From ce573c22cf13dafd9d375eb3a72faf95ec1395cc Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Wed, 1 Aug 2018 12:43:31 -0700 Subject: [PATCH] Fix a deployment issue vue-cli-service had to be added to devDependencies to be picked up by the Vue CLI UI properly, and we need it to build, so we need to make sure dev dependencies are included on the production server. --- shipitfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shipitfile.js b/shipitfile.js index e0e342b..b87820c 100644 --- a/shipitfile.js +++ b/shipitfile.js @@ -23,7 +23,7 @@ module.exports = shipit => { // JS shipit.blTask('install-js-deps', () => { - return shipit.remote(dockerApp + 'yarn install --production', options()); + return shipit.remote(dockerApp + 'yarn install', options()); }); shipit.blTask('build-js', ['install-js-deps'], () => {