Skip to content

Commit

Permalink
chore: remove engines for publish
Browse files Browse the repository at this point in the history
with dependency mock-fs we can not use node >=20, packages with node >=20 should be able to consume
  • Loading branch information
Jumace committed Mar 5, 2024
1 parent d7b4c72 commit 5a2ae06
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watch",
"prepublishOnly": "npm run build",
"prepublishOnly": "npm pkg delete engines && npm run build",
"self:install": "node bin/index.js install",
"self:update": "node bin/index.js update",
"self:check": "node bin/index.js check",
"prepare": "husky install"
"prepare": "husky install",
"postpublish": "git checkout package.json"
},
"repository": {
"type": "git",
Expand All @@ -45,7 +46,8 @@
],
"homepage": "https://github.com/deven-org/documentation-skeleton",
"engines": {
"node": ">= 14"
"node": ">=16.20.2 < 20.0.0",
"npm": ">= 8.19.4 < 10.0.0"
},
"author": "Deven Team",
"license": "MIT",
Expand Down

0 comments on commit 5a2ae06

Please sign in to comment.