Skip to content

Commit

Permalink
chore: pre release sync
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 4, 2018
1 parent 4f2f6f0 commit 83e63c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/@vue/cli-plugin-eslint/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ module.exports = (api, { config, lintOn = [] }) => {
if (config === 'airbnb') {
pkg.eslintConfig.extends.push('@vue/airbnb')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-airbnb': '^3.0.0-alpha.7'
'@vue/eslint-config-airbnb': '^3.0.0-alpha.8'
})
} else if (config === 'standard') {
pkg.eslintConfig.extends.push('@vue/standard')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-standard': '^3.0.0-alpha.7'
'@vue/eslint-config-standard': '^3.0.0-alpha.8'
})
} else if (config === 'prettier') {
pkg.eslintConfig.extends.push('@vue/prettier')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-prettier': '^3.0.0-alpha.7'
'@vue/eslint-config-prettier': '^3.0.0-alpha.8'
})
} else {
// default
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-service/__tests__/Service.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test('loading plugins from package.json', () => {
mockPkg({
devDependencies: {
'bar': '^1.0.0',
'@vue/cli-plugin-babel': '^3.0.0-alpha.7',
'@vue/cli-plugin-babel': '^3.0.0-alpha.8',
'vue-cli-plugin-foo': '^1.0.0'
}
})
Expand Down

0 comments on commit 83e63c4

Please sign in to comment.