Created
January 21, 2020 06:30
-
-
Save kellymears/4152db0904def5b616032517e5ec42e9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| { | |
| "name": "project", | |
| "license": "MIT", | |
| "workspaces": [ | |
| "config", | |
| "web/app/plugins/blocks", | |
| "web/app/themes/sage" | |
| ], | |
| "private": true, | |
| "scripts": { | |
| "start": "concurrently --kill-others-on-fail -c bold.bgMagenta.white,bold.bgBlue.white -n blocks,sage \"yarn start:blocks\" \"yarn start:theme\"", | |
| "start:theme": "yarn workspace theme start", | |
| "start:blocks": "yarn workspace blocks build", | |
| "build": "concurrently --kill-others-on-fail -c bold.bgMagenta.white,bold.bgBlue.white -n blocks,sage \"yarn build:blocks\" \"yarn build:theme\"", | |
| "build:theme": "yarn workspace theme build", | |
| "build:blocks": "yarn workspace blocks build", | |
| "production": "concurrently --kill-others-on-fail -c bold.bgMagenta.white,bold.bgBlue.white -n sage,blocks \"yarn production:theme\" \"yarn production:blocks\"", | |
| "production:theme": "yarn workspace theme build:production", | |
| "production:blocks": "yarn workspace blocks build" | |
| }, | |
| "devDependencies": { | |
| "concurrently": "^5.0.2", | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment