mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-08-20 09:24:15 -05:00
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:
@@ -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'], () => {
|
||||
|
||||
Reference in New Issue
Block a user