From 0813a64c867ccba6f6441c51cc386db56ab867f3 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Mon, 17 Jul 2017 16:03:50 +0800 Subject: [PATCH] update npm script: npm run dist:locale --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e709355e..8b3050c3 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "dist:style": "gulp --gulpfile build/build-style.js", "dist:dev": "webpack --config build/webpack.dist.dev.config.js", "dist:prod": "webpack --config build/webpack.dist.prod.config.js", - "dist": "npm run dist:style && npm run dist:dev && npm run dist:prod", + "dist:locale": "webpack --config build/webpack.dist.locale.config.js", + "dist": "npm run dist:style && npm run dist:dev && npm run dist:prod && npm run dist:locale", "lint": "eslint --fix --ext .js,.vue src", "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run", "test": "npm run lint && npm run unit",