mirror of
https://github.com/captbaritone/webamp
synced 2024-11-22 16:20:49 +00:00
975d712662
* 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
15 lines
265 B
JSON
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": {}
|
|
}
|