Skip to content

Commit

Permalink
Docs: Add showConfig task
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto committed Aug 1, 2021
1 parent 69aee43 commit 9195b4c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,15 @@ If you set an entry file with the javascript module suffix (`.mjs`, `.mjsx`, `.m

## Yarn tasks

There are four predefined main tasks:

| Command | Description | Command |
| --------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| `yarn watch` | Start the file watcher | `concurrently -r yarn:watch:*` |
| `yarn dev` | Build the files once | `concurrently -r yarn:dev:*` |
| `yarn build` | Build the files once for production (optimze file size) | `concurrently -r yarn:build:*` |
| `yarn pipeline` | Run install, and build the files for production | `yarn install --silent --non-interactive;concurrently -r yarn:pipeline:*;yarn build` |
There are five predefined main tasks:

| Command | Description | Command |
| ----------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| `yarn watch` | Start the file watcher | `concurrently -r yarn:watch:*` |
| `yarn dev` | Build the files once | `concurrently -r yarn:dev:*` |
| `yarn build` | Build the files once for production (with optimzed file size) | `concurrently -r yarn:build:*` |
| `yarn pipeline` | Run install, and build the files for production | `yarn install --silent --non-interactive;concurrently -r yarn:pipeline:*;yarn build` |
| `yarn showConfig` | Shows the merged configuration from [`pipeline.yaml`] and [`defaults.yaml`] | `node Build/Carbon.Pipeline/showConfig.mjs` |

The tasks are split up, so they can run in parallel mode. But you can also run them separately:

Expand Down

0 comments on commit 9195b4c

Please sign in to comment.