Skip to content

Commit

Permalink
fix: publish npm-shrinkwrap.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Feb 22, 2024
1 parent 3530762 commit b8d51b2
Show file tree
Hide file tree
Showing 4 changed files with 226 additions and 254 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
/tmp

oclif.lock
oclif.manifest.json
oclif.manifest.json
npm-shrinkwrap.json
2 changes: 1 addition & 1 deletion .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"*.json": ["prettier --write"],
"*.md": ["prettier --write"],
"+(src|test)/**/*.+(ts|js)": ["eslint --fix", "prettier --write"]
"+(src|test|bin)/**/*.+(ts|js)": ["eslint --fix", "prettier --write"]
}
31 changes: 15 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"yarn": "^1.22.21"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/config-conventional": "^18",
"@oclif/plugin-help": "^6",
"@oclif/prettier-config": "^0.2.1",
"@types/chai": "^4.3.11",
Expand All @@ -25,21 +25,21 @@
"@types/node": "^18",
"@types/semver": "^7.5.6",
"@types/shelljs": "^0.8.15",
"@types/sinon": "^10.0.19",
"@types/sinon": "^17",
"@types/validate-npm-package-name": "^4.0.2",
"chai": "^4.4.1",
"commitlint": "^17.8.1",
"commitlint": "^18",
"eslint": "^8.56.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.47",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"husky": "^9",
"lint-staged": "^15.2.1",
"mocha": "^10.3.0",
"oclif": "^4.4.12",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"sinon": "^16.1.3",
"sinon": "^17",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
Expand All @@ -50,7 +50,7 @@
"files": [
"oclif.manifest.json",
"/lib",
"/oclif.lock"
"npm-shrinkwrap.json"
],
"homepage": "https://github.com/oclif/plugin-plugins",
"keywords": [
Expand All @@ -76,20 +76,19 @@
"repository": "oclif/plugin-plugins",
"scripts": {
"build": "shx rm -rf lib && tsc",
"clean": "shx rm -f oclif.manifest.json oclif.lock",
"commitlint": "commitlint",
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
"compile": "tsc",
"lint": "eslint . --ext .ts",
"postpublish": "yarn run clean",
"postpack": "yarn run clean",
"posttest": "yarn lint",
"prepare": "husky install && yarn build",
"prepublishOnly": "yarn run build && oclif lock && oclif manifest . && oclif readme",
"pretest": "yarn build && tsc -p test --noEmit",
"preversion": "yarn run clean",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:integration": "mocha \"test/**/*.integration.ts\"",
"test:integration:sf": "mocha \"test/**/sf.integration.ts\"",
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap",
"prepare": "husky && yarn build",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"test:integration:install": "mocha \"test/**/install.integration.ts\"",
"test:integration:link": "mocha \"test/**/link.integration.ts\"",
"test:integration:sf": "mocha \"test/**/sf.integration.ts\"",
"test:integration": "mocha \"test/**/*.integration.ts\"",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"type": "module",
Expand Down
Loading

0 comments on commit b8d51b2

Please sign in to comment.