File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -274,17 +274,16 @@ prog
274
274
. example ( 'watch --noClean' )
275
275
. option ( '--tsconfig' , 'Specify custom tsconfig path' )
276
276
. example ( 'watch --tsconfig ./tsconfig.foo.json' )
277
- . example ( 'build --tsconfig ./tsconfig.foo.json' )
278
277
. option ( '--onFirstSuccess' , 'Run a command on the first successful build' )
279
278
. example ( 'watch --onFirstSuccess "echo The first successful build!"' )
280
279
. option ( '--onSuccess' , 'Run a command on a successful build' )
281
280
. example ( 'watch --onSuccess "echo Successful build!"' )
282
281
. option ( '--onFailure' , 'Run a command on a failed build' )
283
282
. example ( 'watch --onFailure "The build failed!"' )
284
283
. option ( '--transpileOnly' , 'Skip type checking' )
285
- . example ( 'build --transpileOnly' )
284
+ . example ( 'watch --transpileOnly' )
286
285
. option ( '--extractErrors' , 'Extract invariant errors to ./errors/codes.json.' )
287
- . example ( 'build --extractErrors' )
286
+ . example ( 'watch --extractErrors' )
288
287
. action ( async ( dirtyOpts : WatchOpts ) => {
289
288
const opts = await normalizeOpts ( dirtyOpts ) ;
290
289
const buildConfigs = await createBuildConfigs ( opts ) ;
You can’t perform that action at this time.
0 commit comments