Name | Date | Size | ||
---|---|---|---|---|
.. | 25-Oct-2024 | 4 KiB | ||
.eslintrc.js | H A D | 25-Oct-2024 | 1,003 | |
.gitignore | H A D | 25-Oct-2024 | 22 | |
.npmignore | H A D | 25-Oct-2024 | 630 | |
babel.config.js | H A D | 25-Oct-2024 | 1.1 KiB | |
copy_deps_source.js | H A D | 25-Oct-2024 | 2.1 KiB | |
index.js | H A D | 25-Oct-2024 | 650 | |
main.product.js | H A D | 25-Oct-2024 | 8 KiB | |
module-source.js | H A D | 25-Oct-2024 | 2.1 KiB | |
npm-install.js | H A D | 25-Oct-2024 | 1.5 KiB | |
package-lock.json | H A D | 25-Oct-2024 | 219.9 KiB | |
package.json | H A D | 25-Oct-2024 | 2.5 KiB | |
plugin/ | H | 25-Oct-2024 | 4 KiB | |
README.md | H A D | 25-Oct-2024 | 708 | |
sample/ | H | 25-Oct-2024 | 4 KiB | |
src/ | H | 25-Oct-2024 | 4 KiB | |
test/ | H | 25-Oct-2024 | 4 KiB | |
third_party/ | H | 25-Oct-2024 | 4 KiB | |
uglify-source.js | H A D | 25-Oct-2024 | 1.3 KiB | |
webpack.lite.config.js | H A D | 25-Oct-2024 | 7.1 KiB | |
webpack.rich.config.js | H A D | 25-Oct-2024 | 13.3 KiB |
README.md
1# Ace Loader 2 3A webpack loader for Ace. 4 5## Install Dependencies under the ace-loader dir. 6 7npm install 8 9## Build built-in sample for Rich devices under the ace-loader dir. 10 11npm run rich 12 13## Build built-in sample for Lite devices under the ace-loader dir. 14 15npm run lite 16 17## How to build custom ace project 18 19Windows: 20Step 1. set aceModuleRoot=path/to/your/ace/project 21Step 2. set aceModuleBuild=path/to/your/jsbundle/build 22Step 3. node ./node_modules/webpack/bin/webpack.js --config webpack.rich.config.js 23 24Linux: 25Step 1. export aceModuleRoot=path/to/your/ace/project 26Step 2. export aceModuleBuild=path/to/your/jsbundle/build 27Step 3. node ./node_modules/webpack/bin/webpack.js --config webpack.rich.config.js 28