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

@@ -1,25 +1,26 @@
checksumBehavior: update
nodeLinker: node-modules
packageExtensions:
"@types/react-beautiful-dnd@*":
peerDependencies:
"@types/react": "*"
"@types/react-dom@*":
peerDependencies:
"@types/react": "*"
"@types/react-redux@*":
peerDependencies:
"@types/react": "*"
"@types/react-transition-group@*":
peerDependencies:
"@types/react": "*"
react-dev-utils@*:
peerDependencies:
react-error-overlay: "*"
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
yarnPath: .yarn/releases/yarn-3.2.1.cjs
checksumBehavior: update
packageExtensions:
"@types/react-redux@*":
peerDependencies:
"@types/react": "*"
"@types/react-dom@*":
peerDependencies:
"@types/react": "*"
"@types/react-beautiful-dnd@*":
peerDependencies:
"@types/react": "*"
"@types/react-transition-group@*":
peerDependencies:
"@types/react": "*"
"react-dev-utils@*":
peerDependencies:
"react-error-overlay": "*"

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",