Skip to content

Commit

Permalink
fix: fixed prepublish script
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcourtice committed Nov 8, 2021
1 parent 312aebb commit 3fe2801
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/utilities": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/task": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/compose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/utilities": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/extension-trace": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion extensions/lazy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion extensions/reset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/snapshot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/utilities": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/trace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/transaction/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"dependencies": {
"@harlem/extension-snapshot": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/task/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
}
}
2 changes: 1 addition & 1 deletion packages/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"vue": "^3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"dev": "yarn run --top-level tsup --watch src",
"build": "yarn run --top-level tsup",
"prepublish": "yarn build"
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"@harlem/core": "^2.0.0"
Expand Down

0 comments on commit 3fe2801

Please sign in to comment.