From 733cf1889295e23f3c990a462f8426155c5f37e4 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Wed, 10 Apr 2024 11:34:03 -0600 Subject: [PATCH] chore: remove oclif.lock (#782) --- .gitignore | 2 +- package.json | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 9b2fed4c..3dfcda47 100644 --- a/.gitignore +++ b/.gitignore @@ -11,5 +11,5 @@ oclif.manifest.json /.vscode /.idea -oclif.lock + npm-shrinkwrap.json diff --git a/package.json b/package.json index b99e327f..450fd51e 100644 --- a/package.json +++ b/package.json @@ -55,8 +55,7 @@ "files": [ "oclif.manifest.json", "/dist", - "npm-shrinkwrap.json", - "oclif.lock" + "npm-shrinkwrap.json" ], "homepage": "https://github.com/oclif/plugin-update", "keywords": [ @@ -78,12 +77,12 @@ "repository": "oclif/plugin-update", "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:integration:sf": "mocha --forbid-only \"test/integration/sf.integration.ts\" --timeout 900000",