1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-12 07:35:28 -04:00

Remove rimraf dependency (#133)

This commit is contained in:
XhmikosR
2023-04-03 15:19:27 +03:00
committed by GitHub
parent c45ccfe67c
commit 4d85c73245
4 changed files with 39 additions and 15 deletions
+3 -4
View File
@@ -31,8 +31,7 @@
},
"dependencies": {
"@xhmikosr/bin-wrapper": "^5.0.1",
"pkg-conf": "^4.0.0",
"rimraf": "^3.0.2"
"pkg-conf": "^4.0.0"
},
"devDependencies": {
"bin-check": "^4.1.0",
@@ -44,7 +43,7 @@
"fix": "npm run lint -- --fix",
"uvu": "uvu test",
"test": "npm run lint && npm run uvu",
"postinstall": "rimraf vendor && node lib/install.js"
"postinstall": "node lib/install.js"
},
"files": [
"lib/*.js",
@@ -52,6 +51,6 @@
"index.js"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
"node": "^14.14.0 || >=16.0.0"
}
}