Skip to content

Commit

Permalink
fix(deps): devScripts update (#305)
Browse files Browse the repository at this point in the history
* chore: updates from devScripts

* chore: bump all the things

---------

Co-authored-by: mshanemc <[email protected]>
  • Loading branch information
svc-cli-bot and mshanemc authored Dec 12, 2023
1 parent 6ae602e commit cf8fe08
Show file tree
Hide file tree
Showing 2 changed files with 334 additions and 254 deletions.
35 changes: 23 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
"@oclif/core": "^3.12.0",
"@salesforce/apex-node": "^2.1.2",
"@salesforce/core": "^5.3.20",
"@salesforce/sf-plugins-core": "^4.1.2",
"@oclif/core": "^3.14.1",
"@salesforce/apex-node": "^3.0.1",
"@salesforce/core": "^6.4.1",
"@salesforce/sf-plugins-core": "^5.0.8",
"chalk": "^5.3.0",
"color-convert": "^2.0.1",
"color-name": "^2.0.0"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^5.0.3",
"@salesforce/cli-plugins-testkit": "^5.0.6",
"@salesforce/dev-scripts": "^6.0.3",
"@oclif/plugin-command-snapshot": "^5.0.4",
"@salesforce/cli-plugins-testkit": "^5.1.1",
"@salesforce/dev-scripts": "^8.1.1",
"@salesforce/plugin-command-reference": "^3.0.49",
"@types/color-convert": "^2.0.3",
"eslint-plugin-sf-plugin": "^1.16.15",
"oclif": "^4.0.4",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"engines": {
Expand Down Expand Up @@ -90,6 +90,7 @@
"compile": "wireit",
"docs": "sf-docs",
"format": "wireit",
"link-check": "wireit",
"lint": "wireit",
"postpack": "shx rm -f oclif.manifest.json oclif.lock",
"prepack": "sf-prepack",
Expand Down Expand Up @@ -161,7 +162,8 @@
"test:command-reference",
"test:deprecation-policy",
"lint",
"test:json-schema"
"test:json-schema",
"link-check"
]
},
"test:only": {
Expand All @@ -180,7 +182,7 @@
"output": []
},
"test:command-reference": {
"command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
"files": [
"src/**/*.ts",
"messages/**",
Expand All @@ -191,7 +193,7 @@
]
},
"test:deprecation-policy": {
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
"files": [
"src/**/*.ts"
],
Expand All @@ -201,12 +203,21 @@
]
},
"test:json-schema": {
"command": "ts-node \"./bin/dev.js\" schema:compare",
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
"files": [
"src/**/*.ts",
"schemas"
],
"output": []
},
"link-check": {
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
"files": [
"./*.md",
"./!(CHANGELOG).md",
"messages/**/*.md"
],
"output": []
}
},
"exports": "./lib/index.js",
Expand Down
Loading

0 comments on commit cf8fe08

Please sign in to comment.