exact-template
v0.0.3dev
NODE_ENV=development NODE_OPTIONS="-r @babel/register" concurrently -n webpack,node -c blue,green "webpack --mode development --watch" "nodemon --watch src/"
dev-min
NODE_ENV=development NODE_OPTIONS="-r @babel/register" concurrently -n webpack,node -c blue,green "webpack --mode production --watch" "nodemon --watch src/"
build
npm run lint && webpack --mode production
start
NODE_ENV=production node -r @babel/register src/main.js
lint
eslint src