ECharts.sh
· 470 B · Bash
Bruto
# Install the dependencies from NPM:
npm install
# Rebuild source code immediately in watch mode when changing the source code.
# It opens the `./test` directory, and you may open `-cases.html` to get the list
# of all test cases.
# If you wish to create a test case, run `npm run mktest:help` to learn more.
npm run dev
# Check the correctness of TypeScript code.
npm run checktype
# If intending to build and get all types of the "production" files:
npm run release
1 | # Install the dependencies from NPM: |
2 | npm install |
3 | |
4 | # Rebuild source code immediately in watch mode when changing the source code. |
5 | # It opens the `./test` directory, and you may open `-cases.html` to get the list |
6 | # of all test cases. |
7 | # If you wish to create a test case, run `npm run mktest:help` to learn more. |
8 | npm run dev |
9 | |
10 | # Check the correctness of TypeScript code. |
11 | npm run checktype |
12 | |
13 | # If intending to build and get all types of the "production" files: |
14 | npm run release |