chore: remove lerna build due to inability to parse yarn 3 patch protocol

This commit is contained in:
Mo
2022-06-12 11:47:50 -05:00
parent 6de06265f0
commit 5832c33204
2 changed files with 26 additions and 25 deletions

View File

@@ -15,15 +15,15 @@
"lint": "lerna run lint --parallel",
"test": "lerna run test --parallel",
"clean": "lerna run clean",
"build": "lerna run build",
"build:icons": "lerna run build --scope=@standardnotes/icons",
"build:toast": "lerna run build --scope=@standardnotes/toast",
"build:styles": "lerna run build --scope=@standardnotes/styles",
"build:web": "lerna run build --scope=@standardnotes/web",
"build": "yarn workspaces foreach -pt run build",
"build:icons": "yarn workspace @standardnotes/icons build",
"build:toast": "yarn workspace @standardnotes/toast build",
"build:styles": "yarn workspace @standardnotes/styles build",
"build:web": "yarn workspace @standardnotes/web build",
"build:web:front": "yarn build:icons && yarn build:toast && yarn build:styles && yarn build:web",
"build:web:back": "lerna run build --scope=@standardnotes/web-server",
"build:web:back": "yarn workspace @standardnotes/web-server build",
"build:web:all": "yarn build:web:front && yarn build:web:back",
"build:components": "lerna run build --scope=@standardnotes/components-meta",
"build:components": "yarn workspace @standardnotes/components-meta build",
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
"prepare": "husky install",