8000 feat!: set default NODE_ENV to `production` when running `build` command by haoqunjiang · Pull Request #3859 · vuejs/vue-cli · GitHub
[go: up one dir, main page]

Skip to content

feat!: set default NODE_ENV to production when running build command #3859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove support for vue-cli-service e2e registerCommand (#3774)
BREAKING CHANGE:
"vue-cli-service e2e" has been deprecated in v3 and
renamed to "vue-cli-service test:e2e". Now the legacy command is
completely removed.
  • Loading branch information
haoqunjiang authored Apr 8, 2019
commit 8d02c7c065631e51476153c8431d22b7406b42f6
7 changes: 0 additions & 7 deletions
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,6 @@ module.exports = (api, options) => {
return runner
})
})

// TODO remove in RC
api.registerCommand('e2e', (args, rawArgv) => {
const { warn } = require('@vue/cli-shared-utils')
warn(`Deprecation Warning: "vue-cli-service e2e" has been renamed to "vue-cli-service test:e2e".`)
return api.service.run('test:e2e', args, rawArgv)
})
}

module.exports.defaultModes = {
Expand Down
0