webamp/package.json
Jordan Eldredge 975d712662
Start adopting Yarn workspaces (#985)
* Start adopting Yarn workspaces

My plan is to move the existing package into a workspace and then split
out the things that really ought to be their own packages. For example,
the demo site and the experiments really ought to be separate.

Fix lint command

* Use workspaces in CI

* Fix deploy for monorepo
2020-05-17 22:12:17 -07:00

15 lines
265 B
JSON

{
"name": "webamp-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"deploy": "yarn workspace webamp build && yarn workspace webamp build-library"
},
"devDependencies": {
"prettier": "^2.0.5"
},
"prettier": {}
}