@salesforce/plugin-release-management 4.5.10 → 4.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1322,5 +1322,5 @@
1322
1322
  ]
1323
1323
  }
1324
1324
  },
1325
- "version": "4.5.10"
1325
+ "version": "4.5.11"
1326
1326
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-release-management",
3
3
  "description": "A plugin for preparing and publishing npm packages",
4
- "version": "4.5.10",
4
+ "version": "4.5.11",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "@salesforce/cli-plugins-testkit": "^4.4.12",
16
16
  "@salesforce/core": "^6.4.0",
17
17
  "@salesforce/kit": "^3.0.15",
18
- "@salesforce/plugin-command-reference": "^3.0.48",
18
+ "@salesforce/plugin-command-reference": "^3.0.54",
19
19
  "@salesforce/plugin-trust": "^2.6.23",
20
20
  "@salesforce/sf-plugins-core": "^5.0.1",
21
21
  "@salesforce/ts-types": "^2.0.9",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@oclif/plugin-command-snapshot": "^4.0.16",
37
- "@salesforce/dev-scripts": "^7.1.1",
37
+ "@salesforce/dev-scripts": "^8.1.0",
38
38
  "@salesforce/ts-sinon": "1.4.19",
39
39
  "@types/semver": "^7.5.6",
40
40
  "@types/shelljs": "^0.8.15",
@@ -42,8 +42,8 @@
42
42
  "eslint-plugin-sf-plugin": "^1.16.15",
43
43
  "oclif": "^4",
44
44
  "shx": "0.3.4",
45
- "ts-node": "^10.9.1",
46
- "typescript": "^5.2.2"
45
+ "ts-node": "^10.9.2",
46
+ "typescript": "^5.3.3"
47
47
  },
48
48
  "config": {},
49
49
  "engines": {
@@ -145,6 +145,7 @@
145
145
  "compile": "wireit",
146
146
  "docs": "sf-docs",
147
147
  "format": "wireit",
148
+ "link-check": "wireit",
148
149
  "lint": "wireit",
149
150
  "postpack": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
150
151
  "prepack": "sf-prepack && npm shrinkwrap",
@@ -214,7 +215,8 @@
214
215
  "test:command-reference",
215
216
  "test:deprecation-policy",
216
217
  "lint",
217
- "test:json-schema"
218
+ "test:json-schema",
219
+ "link-check"
218
220
  ]
219
221
  },
220
222
  "test:only": {
@@ -233,7 +235,7 @@
233
235
  "output": []
234
236
  },
235
237
  "test:command-reference": {
236
- "command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
238
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
237
239
  "files": [
238
240
  "src/**/*.ts",
239
241
  "messages/**",
@@ -244,7 +246,7 @@
244
246
  ]
245
247
  },
246
248
  "test:deprecation-policy": {
247
- "command": "ts-node \"./bin/dev.js\" snapshot:compare",
249
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
248
250
  "files": [
249
251
  "src/**/*.ts"
250
252
  ],
@@ -254,12 +256,21 @@
254
256
  ]
255
257
  },
256
258
  "test:json-schema": {
257
- "command": "ts-node \"./bin/dev.js\" schema:compare",
259
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
258
260
  "files": [
259
261
  "src/**/*.ts",
260
262
  "schemas"
261
263
  ],
262
264
  "output": []
265
+ },
266
+ "link-check": {
267
+ "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",
268
+ "files": [
269
+ "./*.md",
270
+ "./!(CHANGELOG).md",
271
+ "messages/**/*.md"
272
+ ],
273
+ "output": []
263
274
  }
264
275
  }
265
276
  }