Skip to content

Commit cf8fe08

Browse files
fix(deps): devScripts update (#305)
* chore: updates from devScripts * chore: bump all the things --------- Co-authored-by: mshanemc <[email protected]>
1 parent 6ae602e commit cf8fe08

File tree

2 files changed

+334
-254
lines changed

2 files changed

+334
-254
lines changed

package.json

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {
8-
"@oclif/core": "^3.12.0",
9-
"@salesforce/apex-node": "^2.1.2",
10-
"@salesforce/core": "^5.3.20",
11-
"@salesforce/sf-plugins-core": "^4.1.2",
8+
"@oclif/core": "^3.14.1",
9+
"@salesforce/apex-node": "^3.0.1",
10+
"@salesforce/core": "^6.4.1",
11+
"@salesforce/sf-plugins-core": "^5.0.8",
1212
"chalk": "^5.3.0",
1313
"color-convert": "^2.0.1",
1414
"color-name": "^2.0.0"
1515
},
1616
"devDependencies": {
17-
"@oclif/plugin-command-snapshot": "^5.0.3",
18-
"@salesforce/cli-plugins-testkit": "^5.0.6",
19-
"@salesforce/dev-scripts": "^6.0.3",
17+
"@oclif/plugin-command-snapshot": "^5.0.4",
18+
"@salesforce/cli-plugins-testkit": "^5.1.1",
19+
"@salesforce/dev-scripts": "^8.1.1",
2020
"@salesforce/plugin-command-reference": "^3.0.49",
2121
"@types/color-convert": "^2.0.3",
2222
"eslint-plugin-sf-plugin": "^1.16.15",
2323
"oclif": "^4.0.4",
2424
"shx": "^0.3.4",
25-
"ts-node": "^10.9.1",
25+
"ts-node": "^10.9.2",
2626
"typescript": "^5.2.2"
2727
},
2828
"engines": {
@@ -90,6 +90,7 @@
9090
"compile": "wireit",
9191
"docs": "sf-docs",
9292
"format": "wireit",
93+
"link-check": "wireit",
9394
"lint": "wireit",
9495
"postpack": "shx rm -f oclif.manifest.json oclif.lock",
9596
"prepack": "sf-prepack",
@@ -161,7 +162,8 @@
161162
"test:command-reference",
162163
"test:deprecation-policy",
163164
"lint",
164-
"test:json-schema"
165+
"test:json-schema",
166+
"link-check"
165167
]
166168
},
167169
"test:only": {
@@ -180,7 +182,7 @@
180182
"output": []
181183
},
182184
"test:command-reference": {
183-
"command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
185+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
184186
"files": [
185187
"src/**/*.ts",
186188
"messages/**",
@@ -191,7 +193,7 @@
191193
]
192194
},
193195
"test:deprecation-policy": {
194-
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
196+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
195197
"files": [
196198
"src/**/*.ts"
197199
],
@@ -201,12 +203,21 @@
201203
]
202204
},
203205
"test:json-schema": {
204-
"command": "ts-node \"./bin/dev.js\" schema:compare",
206+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
205207
"files": [
206208
"src/**/*.ts",
207209
"schemas"
208210
],
209211
"output": []
212+
},
213+
"link-check": {
214+
"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",
215+
"files": [
216+
"./*.md",
217+
"./!(CHANGELOG).md",
218+
"messages/**/*.md"
219+
],
220+
"output": []
210221
}
211222
},
212223
"exports": "./lib/index.js",

0 commit comments

Comments
 (0)