Skip to content

Commit

Permalink
fix: fixed yarn 2 workspace build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcourtice committed Nov 8, 2021
1 parent fc1c3b2 commit 312aebb
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/compose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/lazy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/reset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/snapshot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/trace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions extensions/transaction/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/task/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
}
}
4 changes: 2 additions & 2 deletions packages/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions plugins/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions plugins/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/andrewcourtice/harlem/issues"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
},
"peerDependencies": {
Expand Down

0 comments on commit 312aebb

Please sign in to comment.