chore: pre release sync

This commit is contained in:
Haoqun Jiang
2018-09-25 16:00:29 +08:00
parent 8a971461db
commit 45aa8dbe3a
2 changed files with 5 additions and 5 deletions

View File

@@ -16,17 +16,17 @@ module.exports = (api, { config, lintOn = [] }, _, invoking) => {
if (config === 'airbnb') {
eslintConfig.extends.push('@vue/airbnb')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-airbnb': '^3.0.3'
'@vue/eslint-config-airbnb': '^3.0.4'
})
} else if (config === 'standard') {
eslintConfig.extends.push('@vue/standard')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-standard': '^3.0.3'
'@vue/eslint-config-standard': '^3.0.4'
})
} else if (config === 'prettier') {
eslintConfig.extends.push('@vue/prettier')
Object.assign(pkg.devDependencies, {
'@vue/eslint-config-prettier': '^3.0.3'
'@vue/eslint-config-prettier': '^3.0.4'
})
} else {
// default
@@ -87,7 +87,7 @@ const applyTS = module.exports.applyTS = api => {
}
},
devDependencies: {
'@vue/eslint-config-typescript': '^3.0.3'
'@vue/eslint-config-typescript': '^3.0.4'
}
})
}

View File

@@ -62,7 +62,7 @@ test('loading plugins from package.json', () => {
mockPkg({
devDependencies: {
'bar': '^1.0.0',
'@vue/cli-plugin-babel': '^3.0.3',
'@vue/cli-plugin-babel': '^3.0.4',
'vue-cli-plugin-foo': '^1.0.0'
}
})