Skip to content

Commit

Permalink
Changed some descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
xizon committed Jun 14, 2019
1 parent e54b32f commit 24eeecd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ GitHub pages can only serve static content, and there is no way to run PHP or ge
* Support PJAX no refresh method for loading pages
* Support JS, HTML and SASS component library automatically packaged.
* Make a foundation for the React architecture.
* The core module adopts ES6 import and export, and the third-party plugins adopt pure merge and do not import and export.
* The core module adopts ES6 import and export, and the third-party plugins adopt pure file merger and do not import and export.


* * *
Expand Down Expand Up @@ -276,7 +276,7 @@ uix-kit/
│ ├── index.js
│ ├── index-rtl.js
│ ├── components/
│ │ ├── ES5/ => Third-party plugins adopt pure merge and do not import and export
│ │ ├── ES5/ => Third-party plugins adopt pure file merger and do not import and export
│ │ └── ES6/ => Core modules
├── examples/
│ ├── *.html
Expand Down
2 changes: 1 addition & 1 deletion src/components/ES5/_app-load.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Third-party plugins for website
*
* !!! Third-party plugins adopts pure merge and does not import and export.
* !!! Third-party plugins adopt pure file merger and do not import and export
* !!! Please do not modify variable "UIXKIT_3RD_PARTY_PLUGINS_IMPORT" name
*/

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* Import third-party plugins from components of ES5
*
* @description Third-party plugins adopts pure merge and does not import and export.
* @description Third-party plugins adopt pure file merger and do not import and export
*
*/
import '@uixkit/3rd-party-plugins/_app-load';
Expand Down
3 changes: 1 addition & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ tempAllPages.map( ( event ) => {


// Get all the js component files with ES5
// Third-party plugins adopts pure merge and does not import and export.
// Just do a merge, not for ES6 parsing
// Third-party plugins adopt pure file merger and do not import and export
let pureMergeJSDependenciesFile = globs.pathThirdPartyPlugins + '/_plugins-Miscellaneous/js/_dependencies.js';
let targetJSComFilesName = '';
let JSComFiles = globs.pathThirdPartyPlugins + '/_app-load.js';
Expand Down

0 comments on commit 24eeecd

Please sign in to comment.