From a6b0d1157b99a119eb8b1549526db6d232d2810c Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Thu, 15 Feb 2024 21:53:52 +0100 Subject: [PATCH] Moved lint-staged settings to root level --- core/nut.js/package.json | 9 +-------- package.json | 3 +++ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/core/nut.js/package.json b/core/nut.js/package.json index f3b6aca..e796120 100644 --- a/core/nut.js/package.json +++ b/core/nut.js/package.json @@ -53,7 +53,6 @@ "coverage:clean": "rimraf coverage", "publish:next": "pnpm publish --tag next --no-git-checks", "prepublishOnly": "pnpm run compile", - "versionBump": "bump --tag --push --all", "typedoc": "typedoc --options ./typedoc.js --entryPointStrategy expand ./lib" }, "dependencies": { @@ -65,12 +64,6 @@ "node-abort-controller": "3.1.1" }, "devDependencies": { - "@nut-tree/configs": "workspace:*", - "istanbul-merge": "2.0.0", - "nyc": "15.1.0", - "version-bump-prompt": "6.1.0" - }, - "lint-staged": { - "**/*": "prettier --write --ignore-unknown" + "@nut-tree/configs": "workspace:*" } } \ No newline at end of file diff --git a/package.json b/package.json index eed933d..dcd32cd 100644 --- a/package.json +++ b/package.json @@ -31,5 +31,8 @@ "ts-node": "10.9.2", "typedoc": "0.25.8", "typescript": "5.3.3" + }, + "lint-staged": { + "**/*": "prettier --write --ignore-unknown" } }