Skip to content

Commit

Permalink
feat: use oclif.lock (#134)
Browse files Browse the repository at this point in the history
* feat: use oclif.lock

* chore: update .gitignore
  • Loading branch information
mdonnalley authored Sep 11, 2023
1 parent 4c679f5 commit db0d88e
Show file tree
Hide file tree
Showing 4 changed files with 904 additions and 229 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/tmp
node_modules
oclif.manifest.json
oclif.lock
3 changes: 3 additions & 0 deletions .sfdevrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"exclude-scripts": ["prepack"]
}
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"isbinaryfile": "^5.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"oclif": "^3.1.2",
"oclif": "^3.14.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"sinon": "^14.0.0",
Expand All @@ -56,7 +56,8 @@
"files": [
"/lib",
"/messages",
"/oclif.manifest.json"
"/oclif.manifest.json",
"/oclif.lock"
],
"keywords": [
"sfdx-plugin"
Expand Down Expand Up @@ -105,12 +106,12 @@
"lint": "sf-lint",
"postpack": "rm -f oclif.manifest.json",
"posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference",
"prepack": "sf-prepack",
"prepack": "sf-prepack && oclif lock",
"pretest": "sf-compile-test",
"test": "sf-test",
"test:command-reference": "./bin/dev commandreference:generate -p @salesforce/sfdx-plugin-lwc-test --erroronwarnings",
"test:deprecation-policy": "./bin/dev snapshot:compare",
"test:nuts": "nyc mocha \"./test/**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
"version": "oclif-dev readme && git add README.md"
}
}
}
Loading

0 comments on commit db0d88e

Please sign in to comment.