Skip to content

Commit

Permalink
feat: publish npm-shrinkwrap.json (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley authored Mar 5, 2024
1 parent c454c8f commit a343057
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ node_modules

oclif.manifest.json
oclif.lock
npm-shrinkwrap.json
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@
"/templates",
"/oclif.manifest.json",
"/schemas",
"/oclif.lock"
"/oclif.lock",
"/npm-shrinkwrap.json"
],
"homepage": "https://github.com/salesforcecli/plugin-functions",
"keywords": [
Expand Down Expand Up @@ -177,14 +178,14 @@
"build": "sf-build",
"clean": "sf-clean",
"clean-all": "sf-clean all",
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json oclif.lock npm-shrinkwrap.json",
"compile": "sf-compile",
"docs": "sf-docs",
"format": "sf-format",
"lint": "sf-lint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint && yarn test:deprecation-policy",
"prepack": "sf-prepack && oclif lock",
"prepack": "sf-prepack && oclif lock && npm shrinkwrap",
"prepare": "sf-install",
"pretest": "sf-compile-test",
"promote-dist-tags": "./bin/promote-dist-tags",
Expand Down

0 comments on commit a343057

Please sign in to comment.