Skip to content

Commit b4e3c9f

Browse files
committed
fix: Remove pnpm requirement for npm publishing
- Update prepublishOnly script to use npm instead of pnpm - Remove pnpm from engines requirement - Simplify build process for wider compatibility
1 parent 69aecbd commit b4e3c9f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
"url": "https://github.com/HedyAI/n8n-nodes-hedy/issues"
2828
},
2929
"engines": {
30-
"node": ">=18.10",
31-
"pnpm": ">=9.1"
30+
"node": ">=18.10"
3231
},
3332
"main": "index.js",
3433
"scripts": {
@@ -37,7 +36,7 @@
3736
"format": "prettier nodes credentials --write",
3837
"lint": "eslint . --ext .ts",
3938
"lintfix": "eslint . --ext .ts --fix",
40-
"prepublishOnly": "pnpm build && pnpm lint"
39+
"prepublishOnly": "npm run build"
4140
},
4241
"files": [
4342
"dist"

0 commit comments

Comments
 (0)