1
0

Add worker build subcommand to build command

This commit is contained in:
Nilay Majorwar 2022-02-19 22:35:59 +05:30
parent 61d2a5f241
commit 2174f749ba

@ -3,10 +3,10 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"build": "yarn run build:worker && next build",
"dev:worker": "webpack -c worker-pack/webpack.dev.js --watch",
"build:worker": "webpack -c worker-pack/webpack.prod.js",
"add-new-language": "node scripts/add-new-language.js"