fix: yarn script calls

This commit is contained in:
Yarmo Mackenbach 2023-09-01 13:16:53 +02:00
parent 35c1dbc13d
commit ae6a3b0fdb
No known key found for this signature in database
GPG key ID: 3C57D093219103A3

View file

@ -43,10 +43,10 @@
},
"scripts": {
"start": "node --experimental-fetch ./",
"dev": "LOG_LEVEL=debug yarn run watch & yarn run build:static:dev",
"dev": "LOG_LEVEL=debug yarn run watch && yarn run build:static:dev",
"test": "yarn run lint && mocha",
"watch": "./node_modules/.bin/nodemon --config nodemon.json ./",
"build": "yarn run build:server & yarn run build:static",
"build": "yarn run build:server && yarn run build:static",
"build:server": "ncc build ./src/index.js -o dist",
"build:static": "webpack --config webpack.config.js --env static=true --env mode=production",
"build:static:dev": "webpack --config webpack.config.js --env static=true --env mode=development",