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.
This commit is contained in:
Matt Isenhower
2018-08-01 12:43:31 -07:00
parent 37ced57d0e
commit ce573c22cf

View File

@@ -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'], () => {