syncpack 14.0.0-canary.1 → 14.0.0

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.
package/README.md CHANGED
@@ -1,30 +1,30 @@
1
1
  # syncpack
2
2
 
3
3
  <p align="center">
4
- <img src="https://jamiemason.github.io/syncpack/logo.svg" width="134" height="120" alt="">
4
+ <img src="https://syncpack.dev/logo.svg" width="134" height="120" alt="">
5
5
  <br>Consistent dependency versions in large JavaScript Monorepos.
6
- <br><a href="https://jamiemason.github.io/syncpack">https://jamiemason.github.io/syncpack</a>
6
+ <br><a href="https://syncpack.dev">https://syncpack.dev</a>
7
7
  </p>
8
8
 
9
- > [!NOTE]
10
- > This is the README for v14-alpha, a Rust rewrite which is due to replace [`v13.x.x`](https://github.com/JamieMason/syncpack/tree/13.x.x?tab=readme-ov-file#syncpack)
9
+ Syncpack is used by [AWS](https://github.com/aws/aws-pdk), [Cloudflare](https://github.com/cloudflare/mcp-server-cloudflare), [DataDog](https://github.com/DataDog/datadog-ci), [Electron](https://github.com/electron/forge), [GoDaddy](https://github.com/godaddy/gasket), [LiveStore](https://github.com/livestorejs/livestore), [Lottie](https://github.com/LottieFiles/dotlottie-web), [Microsoft](https://github.com/microsoft/fluentui), [PostHog](https://github.com/PostHog/posthog), [Qwik](https://github.com/QwikDev/qwik), [Raycast](https://github.com/raycast/extensions), [Salesforce](https://github.com/SalesforceCommerceCloud/pwa-kit), [TopTal](https://github.com/toptal/picasso), [Vercel](https://github.com/vercel/vercel), [VoltAgent](https://github.com/VoltAgent/voltagent), [WooCommerce](https://github.com/woocommerce/woocommerce) and others.
10
+
11
11
 
12
12
  ## Installation
13
13
 
14
14
  ```bash
15
- npm install --save-dev syncpack@alpha
15
+ npm install --save-dev syncpack
16
16
  ```
17
17
 
18
18
  ## Guides
19
19
 
20
- - [Getting Started](https://jamiemason.github.io/syncpack/)
21
- - [Migrate to 14](https://jamiemason.github.io/syncpack/guide/migrate-v14/)
20
+ - [Getting Started](https://syncpack.dev/)
21
+ - [Migrate to 14](https://syncpack.dev/guide/migrate-v14/)
22
22
 
23
23
  ## Commands
24
24
 
25
25
  > All command line options can be combined to target packages and dependencies in multiple ways.
26
26
 
27
- ### [lint](https://jamiemason.github.io/syncpack/command/lint)
27
+ ### [lint](https://syncpack.dev/command/lint)
28
28
 
29
29
  Ensure that multiple packages requiring the same dependency define the same version, so that every package requires eg. `react@17.0.2`, instead of a combination of `react@17.0.2`, `react@16.8.3`, and `react@16.14.0`.
30
30
 
@@ -51,7 +51,7 @@ syncpack lint --help
51
51
  syncpack lint -h
52
52
  ```
53
53
 
54
- ### [fix](https://jamiemason.github.io/syncpack/command/fix)
54
+ ### [fix](https://syncpack.dev/command/fix)
55
55
 
56
56
  Fix every autofixable issue found by `syncpack lint`.
57
57
 
@@ -70,7 +70,7 @@ syncpack fix --help
70
70
  syncpack fix -h
71
71
  ```
72
72
 
73
- ### [update](https://jamiemason.github.io/syncpack/command/update)
73
+ ### [update](https://syncpack.dev/command/update)
74
74
 
75
75
  Update packages to the latest versions from the npm registry, wherever they are in your monorepo.<br/>Semver range preferences are preserved when updating.
76
76
 
@@ -101,7 +101,7 @@ syncpack update --help
101
101
  syncpack update -h
102
102
  ```
103
103
 
104
- ### [format](https://jamiemason.github.io/syncpack/command/format)
104
+ ### [format](https://syncpack.dev/command/format)
105
105
 
106
106
  Organise package.json files according to a conventional format, where fields appear in a predictable order and nested fields are ordered alphabetically. Shorthand properties are used where available, such as the `"repository"` and `"bugs"` fields.
107
107
 
@@ -120,7 +120,7 @@ syncpack format --help
120
120
  syncpack format -h
121
121
  ```
122
122
 
123
- ### [list](https://jamiemason.github.io/syncpack/command/list)
123
+ ### [list](https://syncpack.dev/command/list)
124
124
 
125
125
  Query and inspect all dependencies in your project, both valid and invalid.
126
126
 
@@ -149,7 +149,7 @@ syncpack list --help
149
149
  syncpack list -h
150
150
  ```
151
151
 
152
- ### [json](https://jamiemason.github.io/syncpack/command/json)
152
+ ### [json](https://syncpack.dev/command/json)
153
153
 
154
154
  Output the state of every instance of every dependency as a JSON object, one per line. This command is best used with tools like [`jq`](https://jqlang.org/) for filtering and processing.
155
155
 
package/index.cjs ADDED
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { spawnSync } = require('node:child_process');
4
+ const { dirname, join } = require('node:path');
5
+
6
+ const args = process.argv.slice(2);
7
+ const arch = process.arch;
8
+ const [os, extension] = ['win32', 'cygwin'].includes(process.platform) ? ['windows', '.exe'] : [process.platform, ''];
9
+ const optionalDep = `syncpack-${os}-${arch}`;
10
+ const binaryName = `syncpack${extension}`;
11
+
12
+ const pathToBinary = resolveBinaryPath();
13
+
14
+ process.exit(
15
+ spawnSync(pathToBinary, args, {
16
+ cwd: process.cwd(),
17
+ stdio: ['ignore', 'inherit', 'inherit'],
18
+ env: process.env,
19
+ }).status || 0,
20
+ );
21
+
22
+ function resolveBinaryPath() {
23
+ // Strategy 1: Resolve via package.json for pnpm Plug'n'Play
24
+ try {
25
+ const packageJsonPath = require.resolve(`${optionalDep}/package.json`);
26
+ const packageDir = dirname(packageJsonPath);
27
+ return join(packageDir, 'bin', binaryName);
28
+ } catch (_) {}
29
+
30
+ // Strategy 2: Original approach (works with traditional node_modules)
31
+ try {
32
+ return require.resolve(`${optionalDep}/bin/${binaryName}`);
33
+ } catch (_) {}
34
+
35
+ throw new Error(
36
+ `Failed to resolve binary for ${os}-${arch}. Please ensure ${optionalDep} is installed as an optional dependency.`,
37
+ );
38
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "syncpack",
3
3
  "description": "Consistent dependency versions in large JavaScript Monorepos",
4
- "version": "14.0.0-canary.1",
4
+ "version": "14.0.0",
5
5
  "author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
6
6
  "bugs": "https://github.com/JamieMason/syncpack/issues",
7
7
  "contributors": [
@@ -39,9 +39,6 @@
39
39
  "Stuart Knightley (https://github.com/Stuk)",
40
40
  "Tom Fletcher (https://github.com/tom-fletcher)"
41
41
  ],
42
- "dependencies": {
43
- "tsx": "^4.21.0"
44
- },
45
42
  "engines": {
46
43
  "node": ">=14.17.0"
47
44
  },
@@ -72,15 +69,18 @@
72
69
  "type": "git",
73
70
  "url": "git+https://github.com/JamieMason/syncpack.git"
74
71
  },
72
+ "bin": {
73
+ "syncpack": "./index.cjs"
74
+ },
75
75
  "optionalDependencies": {
76
- "syncpack-linux-x64": "14.0.0-canary.1",
77
- "syncpack-linux-x64-musl": "14.0.0-canary.1",
78
- "syncpack-linux-arm64": "14.0.0-canary.1",
79
- "syncpack-linux-arm64-musl": "14.0.0-canary.1",
80
- "syncpack-darwin-x64": "14.0.0-canary.1",
81
- "syncpack-darwin-arm64": "14.0.0-canary.1",
82
- "syncpack-windows-x64": "14.0.0-canary.1",
83
- "syncpack-windows-arm64": "14.0.0-canary.1"
76
+ "syncpack-linux-x64": "14.0.0",
77
+ "syncpack-linux-x64-musl": "14.0.0",
78
+ "syncpack-linux-arm64": "14.0.0",
79
+ "syncpack-linux-arm64-musl": "14.0.0",
80
+ "syncpack-darwin-x64": "14.0.0",
81
+ "syncpack-darwin-arm64": "14.0.0",
82
+ "syncpack-windows-x64": "14.0.0",
83
+ "syncpack-windows-arm64": "14.0.0"
84
84
  },
85
85
  "types": "./syncpack.d.ts"
86
86
  }
package/schema.json CHANGED
@@ -22,16 +22,16 @@
22
22
  "additionalProperties": false,
23
23
  "properties": {
24
24
  "namePath": {
25
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#namepath",
25
+ "see": "https://syncpack.dev/config/custom-types/#namepath",
26
26
  "type": "string"
27
27
  },
28
28
  "path": {
29
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#name",
29
+ "see": "https://syncpack.dev/config/custom-types/#name",
30
30
  "type": "string"
31
31
  },
32
32
  "strategy": {
33
33
  "const": "name~version",
34
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy",
34
+ "see": "https://syncpack.dev/config/custom-types/#namestrategy",
35
35
  "type": "string"
36
36
  }
37
37
  },
@@ -46,12 +46,12 @@
46
46
  "additionalProperties": false,
47
47
  "properties": {
48
48
  "path": {
49
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#name",
49
+ "see": "https://syncpack.dev/config/custom-types/#name",
50
50
  "type": "string"
51
51
  },
52
52
  "strategy": {
53
53
  "const": "name@version",
54
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy",
54
+ "see": "https://syncpack.dev/config/custom-types/#namestrategy",
55
55
  "type": "string"
56
56
  }
57
57
  },
@@ -65,12 +65,12 @@
65
65
  "additionalProperties": false,
66
66
  "properties": {
67
67
  "path": {
68
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#name",
68
+ "see": "https://syncpack.dev/config/custom-types/#name",
69
69
  "type": "string"
70
70
  },
71
71
  "strategy": {
72
72
  "const": "version",
73
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy",
73
+ "see": "https://syncpack.dev/config/custom-types/#namestrategy",
74
74
  "type": "string"
75
75
  }
76
76
  },
@@ -84,12 +84,12 @@
84
84
  "additionalProperties": false,
85
85
  "properties": {
86
86
  "path": {
87
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#name",
87
+ "see": "https://syncpack.dev/config/custom-types/#name",
88
88
  "type": "string"
89
89
  },
90
90
  "strategy": {
91
91
  "const": "versionsByName",
92
- "see": "https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy",
92
+ "see": "https://syncpack.dev/config/custom-types/#namestrategy",
93
93
  "type": "string"
94
94
  }
95
95
  },
@@ -103,14 +103,14 @@
103
103
  "additionalProperties": false,
104
104
  "properties": {
105
105
  "aliasName": {
106
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups/#aliasname",
106
+ "see": "https://syncpack.dev/config/dependency-groups/#aliasname",
107
107
  "type": "string"
108
108
  },
109
109
  "dependencies": {
110
110
  "items": {
111
111
  "type": "string"
112
112
  },
113
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups/#dependencies",
113
+ "see": "https://syncpack.dev/config/dependency-groups/#dependencies",
114
114
  "type": "array"
115
115
  },
116
116
  "dependencyTypes": {
@@ -133,14 +133,14 @@
133
133
  }
134
134
  ]
135
135
  },
136
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups/#dependencytypes",
136
+ "see": "https://syncpack.dev/config/dependency-groups/#dependencytypes",
137
137
  "type": "array"
138
138
  },
139
139
  "packages": {
140
140
  "items": {
141
141
  "type": "string"
142
142
  },
143
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups/#packages",
143
+ "see": "https://syncpack.dev/config/dependency-groups/#packages",
144
144
  "type": "array"
145
145
  },
146
146
  "specifierTypes": {
@@ -172,7 +172,7 @@
172
172
  }
173
173
  ]
174
174
  },
175
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups/#specifiertypes",
175
+ "see": "https://syncpack.dev/config/dependency-groups/#specifiertypes",
176
176
  "type": "array"
177
177
  }
178
178
  },
@@ -185,87 +185,87 @@
185
185
  "additionalProperties": false,
186
186
  "properties": {
187
187
  "$schema": {
188
- "see": "https://jamiemason.github.io/syncpack/config/syncpackrc/#json",
188
+ "see": "https://syncpack.dev/config/syncpackrc/#json",
189
189
  "type": "string"
190
190
  },
191
191
  "customTypes": {
192
192
  "additionalProperties": {
193
193
  "$ref": "#/definitions/CustomType.Any"
194
194
  },
195
- "see": "https://jamiemason.github.io/syncpack/config/custom-types",
195
+ "see": "https://syncpack.dev/config/custom-types",
196
196
  "type": "object"
197
197
  },
198
198
  "dependencyGroups": {
199
199
  "items": {
200
200
  "$ref": "#/definitions/DependencyGroup"
201
201
  },
202
- "see": "https://jamiemason.github.io/syncpack/config/dependency-groups",
202
+ "see": "https://syncpack.dev/config/dependency-groups",
203
203
  "type": "array"
204
204
  },
205
205
  "formatBugs": {
206
- "see": "https://jamiemason.github.io/syncpack/config/format-bugs",
206
+ "see": "https://syncpack.dev/config/format-bugs",
207
207
  "type": "boolean"
208
208
  },
209
209
  "formatRepository": {
210
- "see": "https://jamiemason.github.io/syncpack/config/format-repository",
210
+ "see": "https://syncpack.dev/config/format-repository",
211
211
  "type": "boolean"
212
212
  },
213
213
  "indent": {
214
- "see": "https://jamiemason.github.io/syncpack/config/indent",
214
+ "see": "https://syncpack.dev/config/indent",
215
215
  "type": "string"
216
216
  },
217
217
  "maxConcurrentRequests": {
218
- "see": "https://jamiemason.github.io/syncpack/config/max-concurrent-requests",
218
+ "see": "https://syncpack.dev/config/max-concurrent-requests",
219
219
  "type": "number"
220
220
  },
221
221
  "semverGroups": {
222
222
  "items": {
223
223
  "$ref": "#/definitions/SemverGroup.Any"
224
224
  },
225
- "see": "https://jamiemason.github.io/syncpack/semver-groups",
225
+ "see": "https://syncpack.dev/semver-groups",
226
226
  "type": "array"
227
227
  },
228
228
  "sortAz": {
229
229
  "items": {
230
230
  "type": "string"
231
231
  },
232
- "see": "https://jamiemason.github.io/syncpack/config/sort-az",
232
+ "see": "https://syncpack.dev/config/sort-az",
233
233
  "type": "array"
234
234
  },
235
235
  "sortExports": {
236
236
  "items": {
237
237
  "type": "string"
238
238
  },
239
- "see": "https://jamiemason.github.io/syncpack/config/sort-exports",
239
+ "see": "https://syncpack.dev/config/sort-exports",
240
240
  "type": "array"
241
241
  },
242
242
  "sortFirst": {
243
243
  "items": {
244
244
  "type": "string"
245
245
  },
246
- "see": "https://jamiemason.github.io/syncpack/config/sort-first",
246
+ "see": "https://syncpack.dev/config/sort-first",
247
247
  "type": "array"
248
248
  },
249
249
  "sortPackages": {
250
- "see": "https://jamiemason.github.io/syncpack/config/sort-packages",
250
+ "see": "https://syncpack.dev/config/sort-packages",
251
251
  "type": "boolean"
252
252
  },
253
253
  "source": {
254
254
  "items": {
255
255
  "type": "string"
256
256
  },
257
- "see": "https://jamiemason.github.io/syncpack/config/source",
257
+ "see": "https://syncpack.dev/config/source",
258
258
  "type": "array"
259
259
  },
260
260
  "strict": {
261
- "see": "https://jamiemason.github.io/syncpack/config/strict",
261
+ "see": "https://syncpack.dev/config/strict",
262
262
  "type": "boolean"
263
263
  },
264
264
  "versionGroups": {
265
265
  "items": {
266
266
  "$ref": "#/definitions/VersionGroup.Any"
267
267
  },
268
- "see": "https://jamiemason.github.io/syncpack/version-groups",
268
+ "see": "https://syncpack.dev/version-groups",
269
269
  "type": "array"
270
270
  }
271
271
  },
@@ -288,7 +288,7 @@
288
288
  "items": {
289
289
  "type": "string"
290
290
  },
291
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
291
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
292
292
  "type": "array"
293
293
  },
294
294
  "dependencyTypes": {
@@ -311,23 +311,23 @@
311
311
  }
312
312
  ]
313
313
  },
314
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
314
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
315
315
  "type": "array"
316
316
  },
317
317
  "isIgnored": {
318
318
  "const": true,
319
- "see": "https://jamiemason.github.io/syncpack/semver-groups/ignored/#isignored",
319
+ "see": "https://syncpack.dev/semver-groups/ignored/#isignored",
320
320
  "type": "boolean"
321
321
  },
322
322
  "label": {
323
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
323
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
324
324
  "type": "string"
325
325
  },
326
326
  "packages": {
327
327
  "items": {
328
328
  "type": "string"
329
329
  },
330
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
330
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
331
331
  "type": "array"
332
332
  },
333
333
  "specifierTypes": {
@@ -359,7 +359,7 @@
359
359
  }
360
360
  ]
361
361
  },
362
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
362
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
363
363
  "type": "array"
364
364
  }
365
365
  },
@@ -375,7 +375,7 @@
375
375
  "items": {
376
376
  "type": "string"
377
377
  },
378
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
378
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
379
379
  "type": "array"
380
380
  },
381
381
  "dependencyTypes": {
@@ -398,18 +398,18 @@
398
398
  }
399
399
  ]
400
400
  },
401
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
401
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
402
402
  "type": "array"
403
403
  },
404
404
  "label": {
405
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
405
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
406
406
  "type": "string"
407
407
  },
408
408
  "packages": {
409
409
  "items": {
410
410
  "type": "string"
411
411
  },
412
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
412
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
413
413
  "type": "array"
414
414
  },
415
415
  "range": {
@@ -424,7 +424,7 @@
424
424
  "^",
425
425
  "~"
426
426
  ],
427
- "see": "https://jamiemason.github.io/syncpack/semver-groups/with-range/#range",
427
+ "see": "https://syncpack.dev/semver-groups/with-range/#range",
428
428
  "type": "string"
429
429
  },
430
430
  "specifierTypes": {
@@ -456,7 +456,7 @@
456
456
  }
457
457
  ]
458
458
  },
459
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
459
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
460
460
  "type": "array"
461
461
  }
462
462
  },
@@ -497,7 +497,7 @@
497
497
  "items": {
498
498
  "type": "string"
499
499
  },
500
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
500
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
501
501
  "type": "array"
502
502
  },
503
503
  "dependencyTypes": {
@@ -520,23 +520,23 @@
520
520
  }
521
521
  ]
522
522
  },
523
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
523
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
524
524
  "type": "array"
525
525
  },
526
526
  "isBanned": {
527
527
  "const": true,
528
- "see": "https://jamiemason.github.io/syncpack/version-groups/banned/#isbanned",
528
+ "see": "https://syncpack.dev/version-groups/banned/#isbanned",
529
529
  "type": "boolean"
530
530
  },
531
531
  "label": {
532
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
532
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
533
533
  "type": "string"
534
534
  },
535
535
  "packages": {
536
536
  "items": {
537
537
  "type": "string"
538
538
  },
539
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
539
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
540
540
  "type": "array"
541
541
  },
542
542
  "specifierTypes": {
@@ -568,7 +568,7 @@
568
568
  }
569
569
  ]
570
570
  },
571
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
571
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
572
572
  "type": "array"
573
573
  }
574
574
  },
@@ -584,7 +584,7 @@
584
584
  "items": {
585
585
  "type": "string"
586
586
  },
587
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
587
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
588
588
  "type": "array"
589
589
  },
590
590
  "dependencyTypes": {
@@ -607,23 +607,23 @@
607
607
  }
608
608
  ]
609
609
  },
610
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
610
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
611
611
  "type": "array"
612
612
  },
613
613
  "isIgnored": {
614
614
  "const": true,
615
- "see": "https://jamiemason.github.io/syncpack/version-groups/ignored/#isignored",
615
+ "see": "https://syncpack.dev/version-groups/ignored/#isignored",
616
616
  "type": "boolean"
617
617
  },
618
618
  "label": {
619
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
619
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
620
620
  "type": "string"
621
621
  },
622
622
  "packages": {
623
623
  "items": {
624
624
  "type": "string"
625
625
  },
626
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
626
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
627
627
  "type": "array"
628
628
  },
629
629
  "specifierTypes": {
@@ -655,7 +655,7 @@
655
655
  }
656
656
  ]
657
657
  },
658
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
658
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
659
659
  "type": "array"
660
660
  }
661
661
  },
@@ -671,7 +671,7 @@
671
671
  "items": {
672
672
  "type": "string"
673
673
  },
674
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
674
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
675
675
  "type": "array"
676
676
  },
677
677
  "dependencyTypes": {
@@ -694,22 +694,22 @@
694
694
  }
695
695
  ]
696
696
  },
697
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
697
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
698
698
  "type": "array"
699
699
  },
700
700
  "label": {
701
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
701
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
702
702
  "type": "string"
703
703
  },
704
704
  "packages": {
705
705
  "items": {
706
706
  "type": "string"
707
707
  },
708
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
708
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
709
709
  "type": "array"
710
710
  },
711
711
  "pinVersion": {
712
- "see": "https://jamiemason.github.io/syncpack/version-groups/pinned/#pinversion",
712
+ "see": "https://syncpack.dev/version-groups/pinned/#pinversion",
713
713
  "type": "string"
714
714
  },
715
715
  "specifierTypes": {
@@ -741,7 +741,7 @@
741
741
  }
742
742
  ]
743
743
  },
744
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
744
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
745
745
  "type": "array"
746
746
  }
747
747
  },
@@ -757,7 +757,7 @@
757
757
  "items": {
758
758
  "type": "string"
759
759
  },
760
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
760
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
761
761
  "type": "array"
762
762
  },
763
763
  "dependencyTypes": {
@@ -780,23 +780,23 @@
780
780
  }
781
781
  ]
782
782
  },
783
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
783
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
784
784
  "type": "array"
785
785
  },
786
786
  "label": {
787
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
787
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
788
788
  "type": "string"
789
789
  },
790
790
  "packages": {
791
791
  "items": {
792
792
  "type": "string"
793
793
  },
794
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
794
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
795
795
  "type": "array"
796
796
  },
797
797
  "policy": {
798
798
  "const": "sameMinor",
799
- "see": "https://jamiemason.github.io/syncpack/version-groups/same-minor/#policy",
799
+ "see": "https://syncpack.dev/version-groups/same-minor/#policy",
800
800
  "type": "string"
801
801
  },
802
802
  "specifierTypes": {
@@ -828,7 +828,7 @@
828
828
  }
829
829
  ]
830
830
  },
831
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
831
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
832
832
  "type": "array"
833
833
  }
834
834
  },
@@ -844,7 +844,7 @@
844
844
  "items": {
845
845
  "type": "string"
846
846
  },
847
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
847
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
848
848
  "type": "array"
849
849
  },
850
850
  "dependencyTypes": {
@@ -867,23 +867,23 @@
867
867
  }
868
868
  ]
869
869
  },
870
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
870
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
871
871
  "type": "array"
872
872
  },
873
873
  "label": {
874
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
874
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
875
875
  "type": "string"
876
876
  },
877
877
  "packages": {
878
878
  "items": {
879
879
  "type": "string"
880
880
  },
881
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
881
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
882
882
  "type": "array"
883
883
  },
884
884
  "policy": {
885
885
  "const": "sameRange",
886
- "see": "https://jamiemason.github.io/syncpack/version-groups/same-range/#policy",
886
+ "see": "https://syncpack.dev/version-groups/same-range/#policy",
887
887
  "type": "string"
888
888
  },
889
889
  "specifierTypes": {
@@ -915,7 +915,7 @@
915
915
  }
916
916
  ]
917
917
  },
918
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
918
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
919
919
  "type": "array"
920
920
  }
921
921
  },
@@ -931,7 +931,7 @@
931
931
  "items": {
932
932
  "type": "string"
933
933
  },
934
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
934
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
935
935
  "type": "array"
936
936
  },
937
937
  "dependencyTypes": {
@@ -954,25 +954,25 @@
954
954
  }
955
955
  ]
956
956
  },
957
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
957
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
958
958
  "type": "array"
959
959
  },
960
960
  "label": {
961
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
961
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
962
962
  "type": "string"
963
963
  },
964
964
  "packages": {
965
965
  "items": {
966
966
  "type": "string"
967
967
  },
968
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
968
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
969
969
  "type": "array"
970
970
  },
971
971
  "snapTo": {
972
972
  "items": {
973
973
  "type": "string"
974
974
  },
975
- "see": "https://jamiemason.github.io/syncpack/version-groups/snapped-to/#snapto",
975
+ "see": "https://syncpack.dev/version-groups/snapped-to/#snapto",
976
976
  "type": "array"
977
977
  },
978
978
  "specifierTypes": {
@@ -1004,7 +1004,7 @@
1004
1004
  }
1005
1005
  ]
1006
1006
  },
1007
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
1007
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
1008
1008
  "type": "array"
1009
1009
  }
1010
1010
  },
@@ -1020,7 +1020,7 @@
1020
1020
  "items": {
1021
1021
  "type": "string"
1022
1022
  },
1023
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
1023
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencies",
1024
1024
  "type": "array"
1025
1025
  },
1026
1026
  "dependencyTypes": {
@@ -1043,18 +1043,18 @@
1043
1043
  }
1044
1044
  ]
1045
1045
  },
1046
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
1046
+ "see": "https://syncpack.dev/version-groups/highest-semver/#dependencytypes",
1047
1047
  "type": "array"
1048
1048
  },
1049
1049
  "label": {
1050
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
1050
+ "see": "https://syncpack.dev/version-groups/highest-semver/#label",
1051
1051
  "type": "string"
1052
1052
  },
1053
1053
  "packages": {
1054
1054
  "items": {
1055
1055
  "type": "string"
1056
1056
  },
1057
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
1057
+ "see": "https://syncpack.dev/version-groups/highest-semver/#packages",
1058
1058
  "type": "array"
1059
1059
  },
1060
1060
  "preferVersion": {
@@ -1062,7 +1062,7 @@
1062
1062
  "highestSemver",
1063
1063
  "lowestSemver"
1064
1064
  ],
1065
- "see": "https://jamiemason.github.io/syncpack/version-groups/lowest-semver/#preferversion",
1065
+ "see": "https://syncpack.dev/version-groups/lowest-semver/#preferversion",
1066
1066
  "type": "string"
1067
1067
  },
1068
1068
  "specifierTypes": {
@@ -1094,7 +1094,7 @@
1094
1094
  }
1095
1095
  ]
1096
1096
  },
1097
- "see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
1097
+ "see": "https://syncpack.dev/version-groups/highest-semver/#specifiertypes",
1098
1098
  "type": "array"
1099
1099
  }
1100
1100
  },
package/syncpack.d.ts CHANGED
@@ -1,35 +1,35 @@
1
1
  export interface RcFile {
2
- /** @see https://jamiemason.github.io/syncpack/config/syncpackrc/#json */
2
+ /** @see https://syncpack.dev/config/syncpackrc/#json */
3
3
  $schema?: string;
4
- /** @see https://jamiemason.github.io/syncpack/config/custom-types */
4
+ /** @see https://syncpack.dev/config/custom-types */
5
5
  customTypes?: {
6
6
  [name: string]: CustomType.Any;
7
7
  };
8
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups */
8
+ /** @see https://syncpack.dev/config/dependency-groups */
9
9
  dependencyGroups?: DependencyGroup[];
10
- /** @see https://jamiemason.github.io/syncpack/config/format-bugs */
10
+ /** @see https://syncpack.dev/config/format-bugs */
11
11
  formatBugs?: boolean;
12
- /** @see https://jamiemason.github.io/syncpack/config/format-repository */
12
+ /** @see https://syncpack.dev/config/format-repository */
13
13
  formatRepository?: boolean;
14
- /** @see https://jamiemason.github.io/syncpack/config/indent */
14
+ /** @see https://syncpack.dev/config/indent */
15
15
  indent?: string;
16
- /** @see https://jamiemason.github.io/syncpack/config/max-concurrent-requests */
16
+ /** @see https://syncpack.dev/config/max-concurrent-requests */
17
17
  maxConcurrentRequests?: number;
18
- /** @see https://jamiemason.github.io/syncpack/semver-groups */
18
+ /** @see https://syncpack.dev/semver-groups */
19
19
  semverGroups?: SemverGroup.Any[];
20
- /** @see https://jamiemason.github.io/syncpack/config/sort-az */
20
+ /** @see https://syncpack.dev/config/sort-az */
21
21
  sortAz?: string[];
22
- /** @see https://jamiemason.github.io/syncpack/config/sort-exports */
22
+ /** @see https://syncpack.dev/config/sort-exports */
23
23
  sortExports?: string[];
24
- /** @see https://jamiemason.github.io/syncpack/config/sort-first */
24
+ /** @see https://syncpack.dev/config/sort-first */
25
25
  sortFirst?: string[];
26
- /** @see https://jamiemason.github.io/syncpack/config/sort-packages */
26
+ /** @see https://syncpack.dev/config/sort-packages */
27
27
  sortPackages?: boolean;
28
- /** @see https://jamiemason.github.io/syncpack/config/source */
28
+ /** @see https://syncpack.dev/config/source */
29
29
  source?: string[];
30
- /** @see https://jamiemason.github.io/syncpack/config/strict */
30
+ /** @see https://syncpack.dev/config/strict */
31
31
  strict?: boolean;
32
- /** @see https://jamiemason.github.io/syncpack/version-groups */
32
+ /** @see https://syncpack.dev/version-groups */
33
33
  versionGroups?: VersionGroup.Any[];
34
34
  /** @deprecated */
35
35
  dependencyTypes?: never;
@@ -45,96 +45,96 @@ export interface RcFile {
45
45
  specifierTypes?: never;
46
46
  }
47
47
  export interface GroupSelector {
48
- /** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies */
48
+ /** @see https://syncpack.dev/version-groups/highest-semver/#dependencies */
49
49
  dependencies?: string[];
50
- /** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes */
50
+ /** @see https://syncpack.dev/version-groups/highest-semver/#dependencytypes */
51
51
  dependencyTypes?: DependencyType[];
52
- /** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label */
52
+ /** @see https://syncpack.dev/version-groups/highest-semver/#label */
53
53
  label?: string;
54
- /** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages */
54
+ /** @see https://syncpack.dev/version-groups/highest-semver/#packages */
55
55
  packages?: string[];
56
- /** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes */
56
+ /** @see https://syncpack.dev/version-groups/highest-semver/#specifiertypes */
57
57
  specifierTypes?: SpecifierType[];
58
58
  }
59
59
  export interface DependencyGroup {
60
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups/#aliasname */
60
+ /** @see https://syncpack.dev/config/dependency-groups/#aliasname */
61
61
  aliasName: string;
62
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups/#dependencies */
62
+ /** @see https://syncpack.dev/config/dependency-groups/#dependencies */
63
63
  dependencies?: string[];
64
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups/#dependencytypes */
64
+ /** @see https://syncpack.dev/config/dependency-groups/#dependencytypes */
65
65
  dependencyTypes?: DependencyType[];
66
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups/#packages */
66
+ /** @see https://syncpack.dev/config/dependency-groups/#packages */
67
67
  packages?: string[];
68
- /** @see https://jamiemason.github.io/syncpack/config/dependency-groups/#specifiertypes */
68
+ /** @see https://syncpack.dev/config/dependency-groups/#specifiertypes */
69
69
  specifierTypes?: SpecifierType[];
70
70
  }
71
71
  declare namespace SemverGroup {
72
72
  interface Ignored extends GroupSelector {
73
- /** @see https://jamiemason.github.io/syncpack/semver-groups/ignored/#isignored */
73
+ /** @see https://syncpack.dev/semver-groups/ignored/#isignored */
74
74
  isIgnored: true;
75
75
  }
76
76
  interface WithRange extends GroupSelector {
77
- /** @see https://jamiemason.github.io/syncpack/semver-groups/with-range/#range */
77
+ /** @see https://syncpack.dev/semver-groups/with-range/#range */
78
78
  range: SemverRange;
79
79
  }
80
80
  type Any = Ignored | WithRange;
81
81
  }
82
82
  declare namespace VersionGroup {
83
83
  interface Banned extends GroupSelector {
84
- /** @see https://jamiemason.github.io/syncpack/version-groups/banned/#isbanned */
84
+ /** @see https://syncpack.dev/version-groups/banned/#isbanned */
85
85
  isBanned: true;
86
86
  }
87
87
  interface Ignored extends GroupSelector {
88
- /** @see https://jamiemason.github.io/syncpack/version-groups/ignored/#isignored */
88
+ /** @see https://syncpack.dev/version-groups/ignored/#isignored */
89
89
  isIgnored: true;
90
90
  }
91
91
  interface Pinned extends GroupSelector {
92
- /** @see https://jamiemason.github.io/syncpack/version-groups/pinned/#pinversion */
92
+ /** @see https://syncpack.dev/version-groups/pinned/#pinversion */
93
93
  pinVersion: string;
94
94
  }
95
95
  interface SnappedTo extends GroupSelector {
96
- /** @see https://jamiemason.github.io/syncpack/version-groups/snapped-to/#snapto */
96
+ /** @see https://syncpack.dev/version-groups/snapped-to/#snapto */
97
97
  snapTo: string[];
98
98
  }
99
99
  interface SameRange extends GroupSelector {
100
- /** @see https://jamiemason.github.io/syncpack/version-groups/same-range/#policy */
100
+ /** @see https://syncpack.dev/version-groups/same-range/#policy */
101
101
  policy: 'sameRange';
102
102
  }
103
103
  interface SameMinor extends GroupSelector {
104
- /** @see https://jamiemason.github.io/syncpack/version-groups/same-minor/#policy */
104
+ /** @see https://syncpack.dev/version-groups/same-minor/#policy */
105
105
  policy: 'sameMinor';
106
106
  }
107
107
  interface Standard extends GroupSelector {
108
- /** @see https://jamiemason.github.io/syncpack/version-groups/lowest-semver/#preferversion */
108
+ /** @see https://syncpack.dev/version-groups/lowest-semver/#preferversion */
109
109
  preferVersion?: 'highestSemver' | 'lowestSemver';
110
110
  }
111
111
  type Any = Banned | Ignored | Pinned | SameRange | SameMinor | SnappedTo | Standard;
112
112
  }
113
113
  declare namespace CustomType {
114
114
  interface NameAndVersionProps {
115
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#namepath */
115
+ /** @see https://syncpack.dev/config/custom-types/#namepath */
116
116
  namePath: string;
117
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#name */
117
+ /** @see https://syncpack.dev/config/custom-types/#name */
118
118
  path: string;
119
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy */
119
+ /** @see https://syncpack.dev/config/custom-types/#namestrategy */
120
120
  strategy: 'name~version';
121
121
  }
122
122
  interface NamedVersionString {
123
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#name */
123
+ /** @see https://syncpack.dev/config/custom-types/#name */
124
124
  path: string;
125
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy */
125
+ /** @see https://syncpack.dev/config/custom-types/#namestrategy */
126
126
  strategy: 'name@version';
127
127
  }
128
128
  interface UnnamedVersionString {
129
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#name */
129
+ /** @see https://syncpack.dev/config/custom-types/#name */
130
130
  path: string;
131
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy */
131
+ /** @see https://syncpack.dev/config/custom-types/#namestrategy */
132
132
  strategy: 'version';
133
133
  }
134
134
  interface VersionsByName {
135
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#name */
135
+ /** @see https://syncpack.dev/config/custom-types/#name */
136
136
  path: string;
137
- /** @see https://jamiemason.github.io/syncpack/config/custom-types/#namestrategy */
137
+ /** @see https://syncpack.dev/config/custom-types/#namestrategy */
138
138
  strategy: 'versionsByName';
139
139
  }
140
140
  type Any = NameAndVersionProps | NamedVersionString | UnnamedVersionString | VersionsByName;