Skip to content

Commit 8417bc0

Browse files
committedOct 9, 2018
chore: pre release sync
1 parent f99796e commit 8417bc0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎packages/@vue/cli-plugin-eslint/generator.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ module.exports = (api, { config, lintOn = [] }, _, invoking) => {
1616
if (config === 'airbnb') {
1717
eslintConfig.extends.push('@vue/airbnb')
1818
Object.assign(pkg.devDependencies, {
19-
'@vue/eslint-config-airbnb': '^3.0.4'
19+
'@vue/eslint-config-airbnb': '^3.0.5'
2020
})
2121
} else if (config === 'standard') {
2222
eslintConfig.extends.push('@vue/standard')
2323
Object.assign(pkg.devDependencies, {
24-
'@vue/eslint-config-standard': '^3.0.4'
24+
'@vue/eslint-config-standard': '^3.0.5'
2525
})
2626
} else if (config === 'prettier') {
2727
eslintConfig.extends.push('@vue/prettier')
2828
Object.assign(pkg.devDependencies, {
29-
'@vue/eslint-config-prettier': '^3.0.4'
29+
'@vue/eslint-config-prettier': '^3.0.5'
3030
})
3131
} else {
3232
// default
@@ -87,7 +87,7 @@ const applyTS = module.exports.applyTS = api => {
8787
}
8888
},
8989
devDependencies: {
90-
'@vue/eslint-config-typescript': '^3.0.4'
90+
'@vue/eslint-config-typescript': '^3.0.5'
9191
}
9292
})
9393
}

‎packages/@vue/cli-service/__tests__/Service.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test('loading plugins from package.json', () => {
6262
mockPkg({
6363
devDependencies: {
6464
'bar': '^1.0.0',
65-
'@vue/cli-plugin-babel': '^3.0.4',
65+
'@vue/cli-plugin-babel': '^3.0.5',
6666
'vue-cli-plugin-foo': '^1.0.0'
6767
}
6868
})

0 commit comments

Comments
 (0)
Please sign in to comment.