Name Date Size

..25-Oct-20244 KiB

.eslintrc.jsH A D25-Oct-20241,003

.gitignoreH A D25-Oct-202422

.npmignoreH A D25-Oct-2024630

babel.config.jsH A D25-Oct-20241.1 KiB

copy_deps_source.jsH A D25-Oct-20242.1 KiB

index.jsH A D25-Oct-2024650

main.product.jsH A D25-Oct-20248 KiB

module-source.jsH A D25-Oct-20242.1 KiB

npm-install.jsH A D25-Oct-20241.5 KiB

package-lock.jsonH A D25-Oct-2024219.9 KiB

package.jsonH A D25-Oct-20242.5 KiB

plugin/H25-Oct-20244 KiB

README.mdH A D25-Oct-2024708

sample/H25-Oct-20244 KiB

src/H25-Oct-20244 KiB

test/H25-Oct-20244 KiB

third_party/H25-Oct-20244 KiB

uglify-source.jsH A D25-Oct-20241.3 KiB

webpack.lite.config.jsH A D25-Oct-20247.1 KiB

webpack.rich.config.jsH A D25-Oct-202413.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