- npm i
- Launching server localy:
npm start - Application Build:
npm run build - Scripts Build:
npm run build:scripts - Run tests:
npm test - Run tests with coverage outpur:
npm run test:coverage - Publish new version on this repo:
npm run publish:dev(you will only be able to use this command in a fork) - Publish new version to personal github page:
npm run publish:prod(this command will only work for me)
VSCode workspace config to hide transpiled scripts files and all the assets at the root of the src folder.
{
"files.exclude": {
"**/scripts/*.js": true,
"**/src/*.png": true,
"**/src/*.svg": true
}
}