chore: pre release sync

This commit is contained in:
Evan You
2018-05-29 01:29:03 -04:00
parent f061b554f7
commit 50df8cb010
2 changed files with 5 additions and 5 deletions

View File

@@ -16,17 +16,17 @@ module.exports = (api, { config, lintOn = [] }) => {
if (config === 'airbnb') {
eslintConfig.extends.push('@vue/airbnb')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-airbnb': '^3.0.0-beta.11'
'@vue/eslint-config-airbnb': '^3.0.0-beta.12'
})
} else if (config === 'standard') {
eslintConfig.extends.push('@vue/standard')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-standard': '^3.0.0-beta.11'
'@vue/eslint-config-standard': '^3.0.0-beta.12'
})
} else if (config === 'prettier') {
eslintConfig.extends.push('@vue/prettier')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-prettier': '^3.0.0-beta.11'
'@vue/eslint-config-prettier': '^3.0.0-beta.12'
})
} else {
// default
@@ -37,7 +37,7 @@ module.exports = (api, { config, lintOn = [] }) => {
if (api.hasPlugin('typescript')) {
eslintConfig.extends.push('@vue/typescript')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-typescript': '^3.0.0-beta.11'
'@vue/eslint-config-typescript': '^3.0.0-beta.12'
})
}

View File

@@ -38,7 +38,7 @@ test('loading plugins from package.json', () => {
mockPkg({
devDependencies: {
'bar': '^1.0.0',
'@vue/cli-plugin-babel': '^3.0.0-beta.11',
'@vue/cli-plugin-babel': '^3.0.0-beta.12',
'vue-cli-plugin-foo': '^1.0.0'
}
})