Unit test to make you code runs well
npm install
npm install -g karma-cli
You will need to do this if you want to run Karma on Windows from the command line.
karma start
Building 'dist/bundle.js' as an output if you confirmed that all of your tests runs well.
npm install -g rollup
You will need to install rollup in global if you want to run rollup on Windows from the command line.
rollup -c
The default output folder's location : "./dist/*"
npm publish
Before publish code to npm,you need to add one account at least.
npm adduser
Then add username/password/email
Add settings in VSC launch.json
{
"type": "chrome",
"request": "attach",
"name": "Attach Karma Chrome",
"address": "localhost",
"port": 9333,
"webRoot": "${workspaceRoot}",
"pathMapping": {
"/": "${workspaceRoot}",
"/base/": "${workspaceRoot}/"
}
}
running code
karma start
press 'F5' to attach the source , enjoy it!