Fix bootstraping

This commit is contained in:
schmelczerandras 2020-10-06 13:06:19 +02:00
parent 51a8e2a629
commit 6eddb4834b
6 changed files with 12 additions and 11 deletions

View file

@ -5,8 +5,9 @@
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"lint": "npx eslint --fix \"src/**/*.ts\" && npx prettier --write \"src/**/*.ts\"",
"build": "webpack --mode production && find dist -type f -not -name '*.html' | xargs rm"
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"build": "webpack --mode production && find dist -type f -not -name '*.html' | xargs rm",
"initialize": "npm install"
},
"keywords": [],
"author": "András Schmelczer <andras@schmelczer.dev> (https://schmelczer.dev/)",