Skip to content

Commit 932b1d7

Browse files
committed
chore: pre release sync
1 parent 9b2d5dd commit 932b1d7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: packages/@vue/cli-plugin-eslint/generator.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ module.exports = (api, { config, lintOn = [] }) => {
1717
if (config === 'airbnb') {
1818
pkg.eslintConfig.extends.push('@vue/airbnb')
1919
Object.assign(pkg.devDependencies, {
20-
'@vue/eslint-config-airbnb': '^3.0.0-beta.1'
20+
'@vue/eslint-config-airbnb': '^3.0.0-beta.2'
2121
})
2222
} else if (config === 'standard') {
2323
pkg.eslintConfig.extends.push('@vue/standard')
2424
Object.assign(pkg.devDependencies, {
25-
'@vue/eslint-config-standard': '^3.0.0-beta.1'
25+
'@vue/eslint-config-standard': '^3.0.0-beta.2'
2626
})
2727
} else if (config === 'prettier') {
2828
pkg.eslintConfig.extends.push('@vue/prettier')
2929
Object.assign(pkg.devDependencies, {
30-
'@vue/eslint-config-prettier': '^3.0.0-beta.1'
30+
'@vue/eslint-config-prettier': '^3.0.0-beta.2'
3131
})
3232
} else {
3333
// default
@@ -38,7 +38,7 @@ module.exports = (api, { config, lintOn = [] }) => {
3838
if (api.hasPlugin('typescript')) {
3939
pkg.eslintConfig.extends.push('@vue/typescript')
4040
Object.assign(pkg.devDependencies, {
41-
'@vue/eslint-config-typescript': '^3.0.0-beta.1'
41+
'@vue/eslint-config-typescript': '^3.0.0-beta.2'
4242
})
4343
}
4444

Diff for: packages/@vue/cli-service/__tests__/Service.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test('loading plugins from package.json', () => {
3232
mockPkg({
3333
devDependencies: {
3434
'bar': '^1.0.0',
35-
'@vue/cli-plugin-babel': '^3.0.0-beta.1',
35+
'@vue/cli-plugin-babel': '^3.0.0-beta.2',
3636
'vue-cli-plugin-foo': '^1.0.0'
3737
}
3838
})

0 commit comments

Comments
 (0)