syncpack 13.0.3 → 13.0.4
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 +4 -4
- package/dist/bin-update/effects.js +1 -2
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# syncpack
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://jamiemason.github.io/syncpack/logo.svg" width="
|
|
4
|
+
<img src="https://jamiemason.github.io/syncpack/logo.svg" width="134" height="120" alt="">
|
|
5
5
|
<br>Consistent dependency versions in large JavaScript Monorepos.
|
|
6
6
|
<br><a href="https://jamiemason.github.io/syncpack">https://jamiemason.github.io/syncpack</a>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
|
-
> [!
|
|
10
|
-
>
|
|
9
|
+
> [!NOTE]
|
|
10
|
+
> This is the README for v13, it will be replaced by a Rust rewrite which is available to try at [`npm install -g syncpack@alpha`](https://github.com/JamieMason/syncpack/tree/14.0.0-alpha.11?tab=readme-ov-file#syncpack)
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install --save-dev syncpack
|
|
15
|
+
npm install --save-dev syncpack@13
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Commands
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import https from 'node:https';
|
|
2
2
|
import { EOL } from 'node:os';
|
|
3
|
-
import * as Schema from '@effect/schema/Schema';
|
|
4
3
|
import chalk from 'chalk-template';
|
|
5
|
-
import { Data, Effect, identity, pipe } from 'effect';
|
|
4
|
+
import { Data, Effect, Schema, identity, pipe } from 'effect';
|
|
6
5
|
import ora from 'ora';
|
|
7
6
|
import prompts from 'prompts';
|
|
8
7
|
import { diff } from 'semver';
|
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": "13.0.
|
|
4
|
+
"version": "13.0.4",
|
|
5
5
|
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"syncpack": "dist/bin.js",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"Jamie Mason (https://github.com/JamieMason)",
|
|
35
35
|
"Jody Heavener (https://github.com/jodyheavener)",
|
|
36
36
|
"Keyan Zhang (https://github.com/keyz)",
|
|
37
|
+
"Kim Røen (https://github.com/kimroen)",
|
|
37
38
|
"Luis Vieira (https://github.com/luisvieiragmr)",
|
|
38
39
|
"Maksim Nesterenko (https://github.com/maksnester)",
|
|
39
40
|
"Marais Rossouw (https://github.com/maraisr)",
|
|
@@ -46,7 +47,6 @@
|
|
|
46
47
|
"Tom Fletcher (https://github.com/tom-fletcher)"
|
|
47
48
|
],
|
|
48
49
|
"dependencies": {
|
|
49
|
-
"@effect/schema": "^0.75.5",
|
|
50
50
|
"chalk": "^5.4.1",
|
|
51
51
|
"chalk-template": "^1.1.0",
|
|
52
52
|
"commander": "^13.1.0",
|
|
@@ -113,6 +113,12 @@
|
|
|
113
113
|
"yarn"
|
|
114
114
|
],
|
|
115
115
|
"license": "MIT",
|
|
116
|
+
"pnpm": {
|
|
117
|
+
"onlyBuiltDependencies": [
|
|
118
|
+
"@biomejs/biome",
|
|
119
|
+
"esbuild"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
116
122
|
"repository": "JamieMason/syncpack",
|
|
117
123
|
"scripts": {
|
|
118
124
|
"build": "pnpm run clean && pnpm run build:source && pnpm run build:json-schema",
|