File tree Expand file tree Collapse file tree 3 files changed +2
-20
lines changed
Expand file tree Collapse file tree 3 files changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -144,16 +144,6 @@ module.exports = {
144144 validator : isBoolean ,
145145 } ) ;
146146
147- interlaced = Option . Boolean ( `--interlaced` , false , {
148- description : `Print the output of commands in real-time instead of buffering it` ,
149- validator : isBoolean ,
150- } ) ;
151-
152- jobs = Option . String ( `--jobs` , {
153- description : `Number of jobs to run concurrently` ,
154- validator : isString ,
155- } ) ;
156-
157147 include = Option . String ( '--include' , {
158148 description : `List workspaces based on a glob pattern` ,
159149 validator : isString ,
@@ -188,14 +178,6 @@ module.exports = {
188178 extraArgs . push ( '--topological-dev' ) ;
189179 }
190180
191- if ( this . interlaced ) {
192- extraArgs . push ( '--interlaced' ) ;
193- }
194-
195- if ( this . jobs ) {
196- extraArgs . push ( '--jobs' , this . jobs . toString ( ) ) ;
197- }
198-
199181 const includes = workspaces . map ( ( workspace ) => workspace . manifest . name )
200182 . flatMap ( ( { scope, name } ) => [ '--include' , `@${ scope } /${ name } ` ] ) ;
201183
Original file line number Diff line number Diff line change 3232 "lint:fix" : " yarn lint:eslint --fix && yarn lint:misc --write" ,
3333 "lint:misc" : " prettier --no-error-on-unmatched-pattern --log-level warn \" **/*.json\" \" **/*.md\" \" **/*.html\" \" !CHANGELOG.md\" \" !packages/**\" --ignore-path ../../.gitignore" ,
3434 "since-latest-release" : " ../../scripts/since-latest-release.sh" ,
35- "start" : " yarn workspaces filter --include 'packages/examples/packages/**' --parallel --interlaced --no-private --jobs unlimited run start" ,
35+ "start" : " yarn workspaces foreach --worktree --parallel --verbose --interlaced --no-private --jobs unlimited run start" ,
3636 "start:test" : " yarn start" ,
3737 "test" : " jest --reporters=jest-silent-reporter" ,
3838 "test:clean" : " jest --clearCache" ,
Original file line number Diff line number Diff line change 3232 "lint:fix" : " yarn lint:eslint --fix && yarn lint:misc --write" ,
3333 "lint:misc" : " prettier --no-error-on-unmatched-pattern --log-level warn \" **/*.json\" \" **/*.md\" \" **/*.html\" \" !CHANGELOG.md\" --ignore-path ../../.gitignore" ,
3434 "since-latest-release" : " ../../scripts/since-latest-release.sh" ,
35- "start" : " yarn workspaces foreach --parallel --interlaced --all --include \" @metamask/test-snaps\" --include \" @metamask/example-snaps\" run start:test" ,
35+ "start" : " yarn workspaces foreach --parallel --verbose -- interlaced --all --include \" @metamask/test-snaps\" --include \" @metamask/example-snaps\" run start:test" ,
3636 "start:test" : " cross-env NODE_ENV=development webpack serve" ,
3737 "test" : " jest --reporters=jest-silent-reporter" ,
3838 "test:clean" : " jest --clearCache" ,
You can’t perform that action at this time.
0 commit comments