syncpack-windows-arm64 14.0.0-alpha.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 ADDED
@@ -0,0 +1,58 @@
1
+ # syncpack
2
+
3
+ <p align="center">
4
+ <img src="https://jamiemason.github.io/syncpack/logo.svg" width="200" height="179" alt="">
5
+ <br>Consistent dependency versions in large JavaScript Monorepos.
6
+ <br><a href="https://jamiemason.github.io/syncpack">https://jamiemason.github.io/syncpack</a>
7
+ </p>
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install --save-dev syncpack
13
+ ```
14
+
15
+ ## Commands
16
+
17
+ ### [fix-mismatches](https://jamiemason.github.io/syncpack/command/fix-mismatches)
18
+
19
+ Ensure that multiple packages requiring the same dependency define the same version, so that every package requires eg. `react@16.4.2`, instead of a combination of `react@16.4.2`, `react@0.15.9`, and `react@16.0.0`.
20
+
21
+ ### [format](https://jamiemason.github.io/syncpack/command/format)
22
+
23
+ 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.
24
+
25
+ ### [lint](https://jamiemason.github.io/syncpack/command/lint)
26
+
27
+ Lint all versions and ranges and exit with 0 or 1 based on whether all files match your Syncpack configuration file.
28
+
29
+ ### [lint-semver-ranges](https://jamiemason.github.io/syncpack/command/lint-semver-ranges)
30
+
31
+ Check whether dependency versions used within "dependencies", "devDependencies", etc follow a consistent format.
32
+
33
+ ### [list](https://jamiemason.github.io/syncpack/command/list)
34
+
35
+ List all dependencies required by your packages.
36
+
37
+ ### [list-mismatches](https://jamiemason.github.io/syncpack/command/list-mismatches)
38
+
39
+ List dependencies which are required by multiple packages, where the version is not the same across every package.
40
+
41
+ ### [prompt](https://jamiemason.github.io/syncpack/command/prompt)
42
+
43
+ Displays a series of prompts to fix mismatches which syncpack cannot fix automatically.
44
+
45
+ ### [set-semver-ranges](https://jamiemason.github.io/syncpack/command/set-semver-ranges)
46
+
47
+ Ensure dependency versions used within `"dependencies"`, `"devDependencies"` etc follow a consistent format.
48
+
49
+ ### [update](https://jamiemason.github.io/syncpack/command/update)
50
+
51
+ Interactively update packages to the latest versions from the npm registry, wherever they are in your monorepo. You can update every dependency, just dev/peer/prod dependencies, just packages which match a name filter, and more.
52
+
53
+ ## Badges
54
+
55
+ - [![support on ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/C0C4PY4P)
56
+ - [![NPM version](http://img.shields.io/npm/v/syncpack.svg?style=flat-square)](https://www.npmjs.com/package/syncpack)
57
+ - [![NPM downloads](http://img.shields.io/npm/dm/syncpack.svg?style=flat-square)](https://www.npmjs.com/package/syncpack)
58
+ - [![Build Status](https://img.shields.io/github/actions/workflow/status/JamieMason/syncpack/ci.yaml?branch=main)](https://github.com/JamieMason/syncpack/actions)
Binary file
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "syncpack-windows-arm64",
3
+ "description": "Rust Binary for win32 arm64",
4
+ "version": "14.0.0-alpha.0",
5
+ "author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
6
+ "bugs": "https://github.com/JamieMason/syncpack/issues",
7
+ "funding": "https://github.com/sponsors/JamieMason",
8
+ "homepage": "https://github.com/JamieMason/syncpack#readme",
9
+ "license": "MIT",
10
+ "repository": "JamieMason/syncpack",
11
+ "os": [
12
+ "win32"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ]
17
+ }