syncpack-windows-arm64 14.3.1 → 15.1.1

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
@@ -6,7 +6,20 @@
6
6
  <br><a href="https://syncpack.dev">https://syncpack.dev</a>
7
7
  </p>
8
8
 
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.
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), [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
+ Some of the things it can do are:
12
+
13
+ - Find and fix dependency version mismatches.
14
+ - Enforce a single version policy, or create partitions with separate policies.
15
+ - Find and bump outdated versions from the npm registry.
16
+ - Ensure some dependencies always remain pinned at a specific version.
17
+ - Ban some dependencies from being used: anywhere, or in specific places.
18
+ - Define rules for where exact or loose semver ranges should be used, including in catalogs.
19
+ - Assign packages as the source of truth for specific dependencies' versions.
20
+ - Sort and format package.json files consistently.
21
+ - Auto-migrate all or parts of your repo to [pnpm catalogs](https://pnpm.io/catalogs) or [bun catalogs](https://bun.sh/docs/pm/catalogs).
22
+ - Bump outdated versions in catalogs.
10
23
 
11
24
  ## Installation
12
25
 
@@ -71,7 +84,7 @@ syncpack fix -h
71
84
 
72
85
  ### [update](https://syncpack.dev/command/update)
73
86
 
74
- Update packages to the latest versions from the npm registry, wherever they are in your monorepo.<br/>Semver range preferences are preserved when updating.
87
+ Update packages to the latest versions from the npm registry, wherever they are in your monorepo, including pnpm catalog entries in `pnpm-workspace.yaml`.<br/>Semver range preferences are preserved when updating.
75
88
 
76
89
  #### Examples
77
90
 
@@ -82,10 +95,20 @@ syncpack update --target latest
82
95
  syncpack update --target minor
83
96
  # Only update patch versions (1.2.x)
84
97
  syncpack update --target patch
98
+ # Pick which updates to apply through an interactive prompt
99
+ syncpack update --interactive
100
+ # Interactively pick from patch updates only
101
+ syncpack update --interactive --target patch
102
+ # Interactively pick which @aws-sdk packages to update
103
+ syncpack update --interactive --dependencies '@aws-sdk/**'
85
104
  # Check for outdated dependencies in one package
86
105
  syncpack update --check --source 'packages/pingu/package.json'
87
106
  # Update dependencies and devDependencies in the whole monorepo
88
107
  syncpack update --dependency-types dev,prod
108
+ # Update only pnpm catalog entries in pnpm-workspace.yaml
109
+ syncpack update --dependency-types pnpmCatalog
110
+ # Update only the named pnpm catalog 'react18'
111
+ syncpack update --dependency-types 'pnpmCatalog:react18'
89
112
  # Only update dependencies with a semver range specifier (^, ~, etc.)
90
113
  syncpack update --specifier-types range
91
114
  # Update dependencies where name exactly matches 'react'
package/bin/syncpack.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "syncpack-windows-arm64",
3
3
  "description": "Rust Binary for win32 arm64",
4
- "version": "14.3.1",
4
+ "version": "15.1.1",
5
5
  "author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
6
6
  "bugs": "https://github.com/JamieMason/syncpack/issues",
7
7
  "funding": "https://github.com/sponsors/JamieMason",