File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
22
. option ( '--tag <tag>' , 'vue tag to use' )
23
23
. option ( '--commit <commit>' , 'vue commit sha to use' )
24
24
. option ( '--release <version>' , 'vue release to use from npm registry' )
25
+ . option ( '--local' , 'test locally' )
25
26
. action ( async ( suites , options : CommandOptions ) => {
26
27
const { root, vuePath, workspace } = await setupEnvironment ( )
27
28
const suitesToRun = getSuitesToRun ( suites , root )
33
34
if ( options . release ) {
34
35
vueVersion = options . release
35
36
} else {
36
- await buildVue ( { verify : options . verify , publish : true } )
37
+ if ( ! options . local ) {
38
+ await buildVue ( { verify : options . verify , publish : true } )
39
+ }
37
40
vueVersion = parseVueVersion ( vuePath )
38
41
}
39
42
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export interface CommandOptions {
37
37
verify ?: boolean
38
38
publish ?: boolean
39
39
skipGit ?: boolean
40
+ local ?: boolean
40
41
}
41
42
42
43
export interface RepoOptions {
You can’t perform that action at this time.
0 commit comments