syncpack-linux-arm64-musl 14.0.0-alpha.41 → 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 +11 -13
- package/bin/syncpack +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
1
|
# syncpack
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://
|
|
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://
|
|
6
|
+
<br><a href="https://syncpack.dev">https://syncpack.dev</a>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
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
10
|
|
|
11
|
-
> [!NOTE]
|
|
12
|
-
> 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)
|
|
13
11
|
|
|
14
12
|
## Installation
|
|
15
13
|
|
|
16
14
|
```bash
|
|
17
|
-
npm install --save-dev syncpack
|
|
15
|
+
npm install --save-dev syncpack
|
|
18
16
|
```
|
|
19
17
|
|
|
20
18
|
## Guides
|
|
21
19
|
|
|
22
|
-
- [Getting Started](https://
|
|
23
|
-
- [Migrate to 14](https://
|
|
20
|
+
- [Getting Started](https://syncpack.dev/)
|
|
21
|
+
- [Migrate to 14](https://syncpack.dev/guide/migrate-v14/)
|
|
24
22
|
|
|
25
23
|
## Commands
|
|
26
24
|
|
|
27
25
|
> All command line options can be combined to target packages and dependencies in multiple ways.
|
|
28
26
|
|
|
29
|
-
### [lint](https://
|
|
27
|
+
### [lint](https://syncpack.dev/command/lint)
|
|
30
28
|
|
|
31
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`.
|
|
32
30
|
|
|
@@ -53,7 +51,7 @@ syncpack lint --help
|
|
|
53
51
|
syncpack lint -h
|
|
54
52
|
```
|
|
55
53
|
|
|
56
|
-
### [fix](https://
|
|
54
|
+
### [fix](https://syncpack.dev/command/fix)
|
|
57
55
|
|
|
58
56
|
Fix every autofixable issue found by `syncpack lint`.
|
|
59
57
|
|
|
@@ -72,7 +70,7 @@ syncpack fix --help
|
|
|
72
70
|
syncpack fix -h
|
|
73
71
|
```
|
|
74
72
|
|
|
75
|
-
### [update](https://
|
|
73
|
+
### [update](https://syncpack.dev/command/update)
|
|
76
74
|
|
|
77
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.
|
|
78
76
|
|
|
@@ -103,7 +101,7 @@ syncpack update --help
|
|
|
103
101
|
syncpack update -h
|
|
104
102
|
```
|
|
105
103
|
|
|
106
|
-
### [format](https://
|
|
104
|
+
### [format](https://syncpack.dev/command/format)
|
|
107
105
|
|
|
108
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.
|
|
109
107
|
|
|
@@ -122,7 +120,7 @@ syncpack format --help
|
|
|
122
120
|
syncpack format -h
|
|
123
121
|
```
|
|
124
122
|
|
|
125
|
-
### [list](https://
|
|
123
|
+
### [list](https://syncpack.dev/command/list)
|
|
126
124
|
|
|
127
125
|
Query and inspect all dependencies in your project, both valid and invalid.
|
|
128
126
|
|
|
@@ -151,7 +149,7 @@ syncpack list --help
|
|
|
151
149
|
syncpack list -h
|
|
152
150
|
```
|
|
153
151
|
|
|
154
|
-
### [json](https://
|
|
152
|
+
### [json](https://syncpack.dev/command/json)
|
|
155
153
|
|
|
156
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.
|
|
157
155
|
|
package/bin/syncpack
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syncpack-linux-arm64-musl",
|
|
3
3
|
"description": "Rust Binary for linux arm64",
|
|
4
|
-
"version": "14.0.0
|
|
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
|
"funding": "https://github.com/sponsors/JamieMason",
|