npm run site <url>will analyze the website with the current configuration and using the latest build available in thedistdirectory.npm run site -- --debug <url>same as above, but will show all the debug information.npm run lintwill lint the code.npm run watchwill start watchmode. This is the recommended task to run in the background while developing. It does the following:- sync all the resources from
srctodist(basically anything that is not a.tsfile). - compile the typescript files incrementally to
dist. - run all the tests incrementally.
- sync all the resources from
npm run buildwill do the same as thewatchtask but only once and without running the tests.npm testwill run the tests with code coverage using the code available indist. It is better to run this task afterbuild.
The initialization of the watch task is a bit especial: it will
compile and copy the assets before starting to watch for new files
to copy, build, or test. Because of concurrency, it might be that
the tests are run twice initially.
This project adheres to the Contributor Covenant code of conduct. By participating in this project you agree to abide by its terms.
The code is available under the Apache 2.0 license.