From c7db097445fbb8b7efb2fd58630779026b0d4e64 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Tue, 9 Apr 2024 09:24:59 -0600 Subject: [PATCH] chore: remove oclif.lock --- .gitignore | 2 +- package.json | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2ec88b77..5fc924ec 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,6 @@ /node_modules /tmp -oclif.lock + oclif.manifest.json npm-shrinkwrap.json diff --git a/package.json b/package.json index ec2329d1..a93e509a 100644 --- a/package.json +++ b/package.json @@ -43,8 +43,7 @@ "files": [ "oclif.manifest.json", "/lib", - "npm-shrinkwrap.json", - "oclif.lock" + "npm-shrinkwrap.json" ], "homepage": "https://github.com/oclif/plugin-warn-if-update-available", "keywords": [ @@ -63,12 +62,12 @@ "repository": "oclif/plugin-warn-if-update-available", "scripts": { "build": "shx rm -rf lib && tsc", - "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json oclif.lock", + "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json", "compile": "tsc", "lint": "eslint . --ext .ts", "postpack": "yarn run clean", "posttest": "yarn lint", - "prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap && oclif lock", + "prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap", "prepare": "husky && yarn build", "pretest": "yarn build --noEmit && tsc -p test --noEmit", "test": "mocha --forbid-only \"test/**/*.test.ts\"",