syncpack-linux-x64 14.3.0 → 15.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 +19 -2
- package/bin/syncpack +0 -0
- package/package.json +1 -1
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), [
|
|
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
|
|
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
|
|
|
@@ -86,6 +99,10 @@ syncpack update --target patch
|
|
|
86
99
|
syncpack update --check --source 'packages/pingu/package.json'
|
|
87
100
|
# Update dependencies and devDependencies in the whole monorepo
|
|
88
101
|
syncpack update --dependency-types dev,prod
|
|
102
|
+
# Update only pnpm catalog entries in pnpm-workspace.yaml
|
|
103
|
+
syncpack update --dependency-types pnpmCatalog
|
|
104
|
+
# Update only the named pnpm catalog 'react18'
|
|
105
|
+
syncpack update --dependency-types 'pnpmCatalog:react18'
|
|
89
106
|
# Only update dependencies with a semver range specifier (^, ~, etc.)
|
|
90
107
|
syncpack update --specifier-types range
|
|
91
108
|
# Update dependencies where name exactly matches 'react'
|
package/bin/syncpack
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syncpack-linux-x64",
|
|
3
3
|
"description": "Rust Binary for linux x64",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "15.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
|
"funding": "https://github.com/sponsors/JamieMason",
|