aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-03-14 09:33:06 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2021-03-14 16:43:17 +0900
commit06ac7941a48ceee53e1088e90590449badcbfaa7 (patch)
treea395fbc13495986e701e8692abdd085101ec41b3
parent0f27a0f86cfcd06b3ff1c0ea1e74d628ed0c7973 (diff)
Remove --debug flag on start script
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 5ce5b93..c8ce2d2 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"description": "Vim vixen",
"scripts": {
"schema": "ajv compile -s src/shared/settings/schema.json -o src/shared/settings/validate.js",
- "start": "webpack --mode development -w --debug --devtool inline-source-map",
+ "start": "webpack --mode development -w --devtool inline-source-map",
"build": "NODE_ENV=production webpack --mode production --progress --devtool inline-source-map",
"package": "yarn build && script/package",
"lint": "eslint --ext .ts,.tsx .",