The minimal supported version of NodeJS for development is 12.18.1.
npm run tsc
- compiles the source code only (excluding tests)npm run tsc-watch
- runs the TypeScript compiler in the watch mode for source code (same astsc
, but in the watch mode)npm run tsc-verify
- compiles everything (source code and tests) with composite projects config to ensure that no invalid imports or cyclic deps are found
npm run rollup
- runs Rollup to bundle codenpm run build
- compiles source code and bundles it (as one word fornpm run tsc && npm run rollup
)npm run build:prod
- the same asnpm run build
, but also bundles production (minified) builds
npm run lint
- runs lint for the codenpm run test
- runs unit-tests
-
You can use the following command to make sure that your local copy passes all (almost) available checks:
npm run verify
-
If you want to play with a locally built package, you can create a
debug.html
page:cp debug.html.example debug.html
.This file (
debug.html
) is under gitignore, so you don't need to worry about changing it and you can modify it as you wish.