@form8ion/lerna 3.0.0-beta.2 → 3.0.0-beta.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 +3 -0
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ opinionated scaffolder for monorepos managed with [Lerna](https://lerna.js.org/)
|
|
|
28
28
|
[![MIT license][license-badge]][license-link]
|
|
29
29
|
[![npm][npm-badge]][npm-link]
|
|
30
30
|
[![Try @form8ion/lerna on RunKit][runkit-badge]][runkit-link]
|
|
31
|
+
![node][node-badge]
|
|
31
32
|
|
|
32
33
|
<!--consumer-badges end -->
|
|
33
34
|
|
|
@@ -120,3 +121,5 @@ $ npm test
|
|
|
120
121
|
[runkit-badge]: https://badge.runkitcdn.com/@form8ion/lerna.svg
|
|
121
122
|
|
|
122
123
|
[slsa-badge]: https://slsa.dev/images/gh-badge-level2.svg
|
|
124
|
+
|
|
125
|
+
[node-badge]: https://img.shields.io/node/v/@form8ion/lerna?logo=node.js
|
package/package.json
CHANGED
|
@@ -2,15 +2,18 @@
|
|
|
2
2
|
"name": "@form8ion/lerna",
|
|
3
3
|
"description": "opinionated scaffolder for monorepos managed with lerna",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "3.0.0-beta.
|
|
5
|
+
"version": "3.0.0-beta.4",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": "^18.19.0 || ^20.9.0 || >=22.11.0"
|
|
9
|
+
},
|
|
7
10
|
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
|
|
8
11
|
"repository": "form8ion/lerna",
|
|
9
12
|
"bugs": "https://github.com/form8ion/lerna/issues",
|
|
10
13
|
"homepage": "https://npm.im/@form8ion/lerna",
|
|
11
14
|
"runkitExampleFilename": "./example.js",
|
|
12
|
-
"main": "./lib/index.js",
|
|
13
15
|
"exports": "./lib/index.js",
|
|
16
|
+
"main": "./lib/index.js",
|
|
14
17
|
"sideEffects": false,
|
|
15
18
|
"scripts": {
|
|
16
19
|
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
|
|
@@ -21,7 +24,7 @@
|
|
|
21
24
|
"generate:md": "remark . --output",
|
|
22
25
|
"pregenerate:md": "run-s build",
|
|
23
26
|
"lint:sensitive": "ban",
|
|
24
|
-
"pretest:integration": "
|
|
27
|
+
"pretest:integration": "run-s build",
|
|
25
28
|
"lint:gherkin": "gherkin-lint",
|
|
26
29
|
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
|
|
27
30
|
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
|
|
@@ -39,7 +42,8 @@
|
|
|
39
42
|
"test:unit:base": "DEBUG=any vitest run",
|
|
40
43
|
"lint:peer": "npm ls >/dev/null",
|
|
41
44
|
"prepare": "husky install",
|
|
42
|
-
"lint:publish": "publint --strict"
|
|
45
|
+
"lint:publish": "publint --strict",
|
|
46
|
+
"lint:engines": "ls-engines"
|
|
43
47
|
},
|
|
44
48
|
"files": [
|
|
45
49
|
"example.js",
|
|
@@ -49,9 +53,9 @@
|
|
|
49
53
|
"access": "public",
|
|
50
54
|
"provenance": true
|
|
51
55
|
},
|
|
52
|
-
"packageManager": "npm@11.
|
|
56
|
+
"packageManager": "npm@11.1.0+sha512.acf301ad9b9ddba948fcb72341e2f0fcae477f56a95cc2a092934d133a7461062633cefbf93d5934a3dc0768674e2edee9f04dcfcc4bb4c327ff0e3a7d552a1b",
|
|
53
57
|
"dependencies": {
|
|
54
|
-
"@form8ion/core": "^
|
|
58
|
+
"@form8ion/core": "^4.0.0",
|
|
55
59
|
"deepmerge": "^4.2.2"
|
|
56
60
|
},
|
|
57
61
|
"devDependencies": {
|
|
@@ -71,17 +75,17 @@
|
|
|
71
75
|
"gherkin-lint": "4.2.2",
|
|
72
76
|
"husky": "8.0.3",
|
|
73
77
|
"lockfile-lint": "4.12.1",
|
|
78
|
+
"ls-engines": "0.9.3",
|
|
74
79
|
"mock-fs": "5.2.0",
|
|
75
80
|
"npm-run-all2": "6.1.1",
|
|
76
|
-
"package-preview": "4.0.0",
|
|
77
81
|
"publint": "0.2.6",
|
|
78
82
|
"remark-cli": "12.0.0",
|
|
79
83
|
"remark-toc": "9.0.0",
|
|
80
84
|
"remark-usage": "11.0.1",
|
|
81
85
|
"rimraf": "5.0.5",
|
|
82
|
-
"rollup": "4.
|
|
86
|
+
"rollup": "4.22.4",
|
|
83
87
|
"rollup-plugin-auto-external": "2.0.0",
|
|
84
|
-
"vitest": "3.0.
|
|
88
|
+
"vitest": "3.0.5",
|
|
85
89
|
"vitest-when": "0.6.0"
|
|
86
90
|
},
|
|
87
91
|
"peerDependencies": {
|