From 326c36cf080d454c77bff31014da3f2c49f1bcbc Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 4 Sep 2017 23:56:02 +0430 Subject: [PATCH] fix(nuxt-start): include minimist dependency --- build/start.js | 3 ++- start/package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build/start.js b/build/start.js index ac1d3bdf67..9f5eaecc28 100755 --- a/build/start.js +++ b/build/start.js @@ -15,7 +15,8 @@ const packageJSON = readJSONSync(resolve(rootDir, 'package.json')) // Required and Excluded packages for start let requires = [ 'source-map-support', - 'pretty-error' + 'pretty-error', + 'minimist' ] const excludes = [ diff --git a/start/package.json b/start/package.json index 1fb449003a..5bbaf6c6b2 100644 --- a/start/package.json +++ b/start/package.json @@ -48,6 +48,7 @@ "dependencies": { "source-map-support": "^0.4.17", "pretty-error": "^2.1.1", + "minimist": "^1.2.0", "lodash": "^4.17.4", "hash-sum": "^1.0.2", "tappable": "^1.1.0",