From e62f1728284c468deddb5e136e1cfe7f2dc39970 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 10 May 2024 11:39:05 -0600 Subject: [PATCH] chore: remove npm-shrinkwrap.json (#549) --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9e588f45..2b42bc2e 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,6 @@ "exports": "./lib/index.js", "files": [ "/lib", - "/npm-shrinkwrap.json", "/oclif.manifest.json", "/schemas" ], @@ -79,12 +78,12 @@ "repository": "oclif/plugin-command-snapshot", "scripts": { "build": "shx rm -rf lib && tsc", - "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json", + "clean": "shx rm -f oclif.manifest.json", "compile": "tsc", "lint": "eslint . --ext .ts", "postpack": "yarn run clean", "posttest": "yarn lint", - "prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap", + "prepack": "yarn build && oclif manifest && oclif readme", "prepare": "husky && yarn build", "pretest": "yarn build --noEmit && tsc -p test --noEmit", "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\" --timeout 20000",