Configure VS Code and Angular project with an optimized development experience using a CLI tool
npm i -g mrm-task-angular-vscode
npx mrm angular-vscode
Configures:
These are generic npm scripts that you can copy & paste into your package.json
file as-is and get access to convinience scripts to manage your Docker images all in one place.
npm i -g mrm-task-npm-docker
npx mrm npm-docker
Here's the code repository https://github.com/expertly-simple/mrm-task-npm-docker
{ | |
"name": "playground", | |
"version": "1.0.0", | |
"main": "server/app.js", | |
"private": true, | |
"scripts": { | |
"clean": "npm run clean:client && npm run clean:server", | |
"clean:client": "rm -rf public/*.* && rm -rf public/**/*.* && rm -rf src/ts/*.js && rm -rf src/ts/**/*.js", | |
"clean:server": "rm -rf server/*.{js,d.ts} && rm -rf server/**/*.{js,d.ts}", | |
"compile": "npm run compile:client && npm run compile:sass && npm run compile:server && npm run compile:static", |