-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Tugboat command to Next Start.
- Loading branch information
1 parent
f881511
commit f4f847e
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
version: '3' | ||
dotenv: ['.env'] | ||
dotenv: [ '.env' ] | ||
output: 'group' | ||
|
||
tasks: | ||
build-storybook: | ||
desc: Build storybook | ||
cmds: | ||
- composer va:ds:storybook | ||
- composer va:ds:storybook | ||
|
||
build-frontend: | ||
desc: Request a frontend build | ||
cmds: | ||
- drush va-gov-content-release:request:submit | ||
- drush va-gov-content-release:request:submit | ||
|
||
build-next: | ||
desc: build next.js preview server | ||
start-next: | ||
desc: start next.js preview server | ||
cmds: | ||
- composer va:next:build | ||
- composer va:next:start | ||
|
||
build: | ||
deps: | ||
- build-storybook | ||
- build-frontend | ||
- build-next | ||
- build-storybook | ||
- build-frontend | ||
- start-next | ||
|
||
default: | ||
cmds: | ||
- task: build | ||
- task: build |