Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: publish npm-shrinkwrap.json #772

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading