Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-09 13:21:33 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-09 13:21:33 +0300
commitdbd5851f9ddaf60cb435e068ccd264793c87bfeb (patch)
treeae7c28ca3720b0c465ee2e1351d44f2062f48824 /package.json
parentc65a56b0e3511b67da23b22936254574d458377e (diff)
Make Make make everything
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index d2c499626..7dbcdd252 100644
--- a/package.json
+++ b/package.json
@@ -6,9 +6,9 @@
"license": "agpl",
"private": true,
"scripts": {
- "dev": "webpack --config webpack.dev.js",
- "watch": "webpack --progress --watch --config webpack.dev.js",
- "build": "webpack --progress --hide-modules --config webpack.prod.js",
+ "dev": "NODE_ENV=development webpack --config webpack.dev.js",
+ "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
+ "build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",