2016-08-03 14:37:02 +00:00
|
|
|
To setup javascript dev, first run
|
2016-07-31 18:51:06 +00:00
|
|
|
|
|
|
|
npm install
|
|
|
|
|
|
|
|
to set up your testing environment. Then use
|
|
|
|
|
2016-08-03 14:37:02 +00:00
|
|
|
npm run test
|
2016-07-31 18:51:06 +00:00
|
|
|
|
|
|
|
to see the results of testing the current javascript files.
|
|
|
|
|
|
|
|
To build the javascript files, run
|
|
|
|
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
If you are actively developing and would like any changes to trigger a rebuild, you can use
|
|
|
|
|
|
|
|
npm run build:watch
|
|
|
|
|
|
|
|
instead.
|