From 9195b4c6641cf95470a83c5a604e06174d32c7d7 Mon Sep 17 00:00:00 2001 From: Jon Uhlmann Date: Sun, 1 Aug 2021 13:37:01 +0200 Subject: [PATCH] Docs: Add showConfig task --- Readme.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Readme.md b/Readme.md index d8b0517..3c5b6d4 100644 --- a/Readme.md +++ b/Readme.md @@ -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: