@salesforce/packaging 3.0.12 → 3.0.13

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.
Files changed (1) hide show
  1. package/package.json +18 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/packaging",
3
- "version": "3.0.12",
3
+ "version": "3.0.13",
4
4
  "description": "Packaging library for the Salesforce packaging platform",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",
@@ -13,6 +13,7 @@
13
13
  "compile": "wireit",
14
14
  "docs": "sf-docs",
15
15
  "format": "wireit",
16
+ "link-check": "wireit",
16
17
  "lint": "wireit",
17
18
  "lint-fix": "yarn sf-lint --fix",
18
19
  "postcompile": "tsc -p test",
@@ -41,10 +42,10 @@
41
42
  ],
42
43
  "dependencies": {
43
44
  "@oclif/core": "^3",
44
- "@salesforce/core": "^6.2.2",
45
+ "@salesforce/core": "^6.4.0",
45
46
  "@salesforce/kit": "^3.0.15",
46
47
  "@salesforce/schemas": "^1.6.1",
47
- "@salesforce/source-deploy-retrieve": "^10.2.3",
48
+ "@salesforce/source-deploy-retrieve": "^10.2.4",
48
49
  "@salesforce/ts-types": "^2.0.9",
49
50
  "fast-xml-parser": "^4.3.1",
50
51
  "globby": "^11",
@@ -56,14 +57,14 @@
56
57
  },
57
58
  "devDependencies": {
58
59
  "@salesforce/cli-plugins-testkit": "^4.4.12",
59
- "@salesforce/dev-scripts": "^7.1.1",
60
+ "@salesforce/dev-scripts": "^8.1.2",
60
61
  "@salesforce/ts-sinon": "^1.4.19",
61
62
  "@types/globby": "^9.1.0",
62
63
  "@types/jszip": "^3.4.1",
63
64
  "eslint-plugin-sf-plugin": "^1.16.15",
64
65
  "shelljs": "0.8.5",
65
- "ts-node": "^10.9.1",
66
- "typescript": "^5.2.2"
66
+ "ts-node": "^10.9.2",
67
+ "typescript": "^5.3.3"
67
68
  },
68
69
  "publishConfig": {
69
70
  "access": "public"
@@ -121,7 +122,8 @@
121
122
  "test": {
122
123
  "dependencies": [
123
124
  "test:only",
124
- "test:compile"
125
+ "test:compile",
126
+ "link-check"
125
127
  ]
126
128
  },
127
129
  "test:only": {
@@ -138,6 +140,15 @@
138
140
  ".nycrc"
139
141
  ],
140
142
  "output": []
143
+ },
144
+ "link-check": {
145
+ "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",
146
+ "files": [
147
+ "./*.md",
148
+ "./!(CHANGELOG).md",
149
+ "messages/**/*.md"
150
+ ],
151
+ "output": []
141
152
  }
142
153
  }
143
154
  }