Skip to content

Instantly share code, notes, and snippets.

@kellymears
Created January 21, 2020 06:30
Show Gist options
  • Select an option

  • Save kellymears/4152db0904def5b616032517e5ec42e9 to your computer and use it in GitHub Desktop.

Select an option

Save kellymears/4152db0904def5b616032517e5ec42e9 to your computer and use it in GitHub Desktop.
{
"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