From 12bb0dcc7586387fa6c4d454dc72a706c636268c Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Thu, 9 May 2024 10:22:22 -0600 Subject: [PATCH] chore: remove npm-shrinkwrap.json --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 3ccf0d73..18987c38 100644 --- a/package.json +++ b/package.json @@ -35,8 +35,7 @@ "exports": "./lib/index.js", "files": [ "oclif.manifest.json", - "/lib", - "npm-shrinkwrap.json" + "/lib" ], "homepage": "https://github.com/oclif/plugin-help", "keywords": [ @@ -52,12 +51,12 @@ "repository": "oclif/plugin-help", "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": "mocha --forbid-only \"test/**/*.test.ts\"",