Skip to content

Commit 1529ebc

Browse files
committed
chore: pre release sync
1 parent f372f55 commit 1529ebc

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ module.exports = (api, { config, lintOn = [] }) => {
1616
if (config === 'airbnb') {
1717
pkg.eslintConfig.extends.push('@vue/airbnb')
1818
Object.assign(pkg.devDependencies, {
19-
'@vue/eslint-config-airbnb': '^3.0.0-alpha.4'
19+
'@vue/eslint-config-airbnb': '^3.0.0-alpha.5'
2020
})
2121
} else if (config === 'standard') {
2222
pkg.eslintConfig.extends.push('@vue/standard')
2323
Object.assign(pkg.devDependencies, {
24-
'@vue/eslint-config-standard': '^3.0.0-alpha.4'
24+
'@vue/eslint-config-standard': '^3.0.0-alpha.5'
2525
})
2626
} else if (config === 'prettier') {
2727
pkg.eslintConfig.extends.push('@vue/prettier')
2828
Object.assign(pkg.devDependencies, {
29-
'@vue/eslint-config-prettier': '^3.0.0-alpha.4'
29+
'@vue/eslint-config-prettier': '^3.0.0-alpha.5'
3030
})
3131
} else {
3232
// default

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test('loading plugins from package.json', () => {
3131
mockPkg({
3232
devDependencies: {
3333
'bar': '^1.0.0',
34-
'@vue/cli-plugin-babel': '^3.0.0-alpha.4',
34+
'@vue/cli-plugin-babel': '^3.0.0-alpha.5',
3535
'vue-cli-plugin-foo': '^1.0.0'
3636
}
3737
})

packages/@vue/cli-service/lib/commands/build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ module.exports = (api, options) => {
1010
options: {
1111
'--mode': `specify env mode (default: ${defaults.mode})`
1212
// TODO build target
13-
// '--target': `app | library | web-component (default: ${defaults.target})`
13+
// '--target': `app | lib | web-component (default: ${defaults.target})`,
14+
// '--format': `How the lib is exposed (esm, umd, cjs, amd). Default: esm`
15+
// '--name': `Library name for umd/iife export`
1416
}
1517
}, args => {
1618
api.setMode(args.mode || defaults.mode)

packages/@vue/cli/bin/vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ program
3838
.command('create <app-name>')
3939
.description('create a new project powered by vue-cli-service')
4040
.option('-p, --preset <presetName>', 'Skip prompts and use saved preset')
41-
.option('-d, --default', 'Skip prompts and use default config')
41+
.option('-d, --default', 'Skip prompts and use default preset')
4242
.option('-i, --inlinePreset <json>', 'Skip prompts and use inline JSON string as preset')
4343
.option('-r, --registry <url>', 'Use specified NPM registry when installing dependencies')
4444
.option('-m, --packageManager <command>', 'Use specified NPM client when installing dependencies')

0 commit comments

Comments
 (0)