relizy 0.2.5-beta.9 → 0.2.5
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/dist/cli.mjs +9 -7
- package/dist/index.d.mts +44 -9
- package/dist/index.d.ts +44 -9
- package/dist/index.mjs +6 -6
- package/dist/shared/{relizy.DXsVzrS_.mjs → relizy.CU6Hj4K0.mjs} +1320 -1184
- package/package.json +23 -21
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "relizy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.5
|
|
4
|
+
"version": "0.2.5",
|
|
5
|
+
"packageManager": "pnpm@10.22.0",
|
|
5
6
|
"description": "Changelogen adapter for monorepo management with unified and independent versioning",
|
|
6
7
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
8
|
"license": "MIT",
|
|
@@ -54,9 +55,24 @@
|
|
|
54
55
|
"engines": {
|
|
55
56
|
"node": ">=20.0.0"
|
|
56
57
|
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"preinstall": "npx only-allow pnpm",
|
|
60
|
+
"prepare": "npx husky",
|
|
61
|
+
"build": "unbuild",
|
|
62
|
+
"dev": "unbuild --stub",
|
|
63
|
+
"relizy": "node bin/relizy.mjs",
|
|
64
|
+
"rly": "node bin/relizy.mjs",
|
|
65
|
+
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
66
|
+
"lint": "cross-env NODE_ENV=production eslint .",
|
|
67
|
+
"lint:fix": "pnpm lint --fix",
|
|
68
|
+
"test:unit": "vitest run",
|
|
69
|
+
"test:unit:watch": "vitest watch",
|
|
70
|
+
"test:unit:coverage": "vitest run --coverage",
|
|
71
|
+
"pre-commit": "lint-staged"
|
|
72
|
+
},
|
|
57
73
|
"dependencies": {
|
|
58
|
-
"@inquirer/prompts": "^
|
|
59
|
-
"@maz-ui/node": "
|
|
74
|
+
"@inquirer/prompts": "^8.0.1",
|
|
75
|
+
"@maz-ui/node": "4.3.2-beta.1",
|
|
60
76
|
"@maz-ui/utils": "^4.3.0",
|
|
61
77
|
"c12": "^3.3.2",
|
|
62
78
|
"changelogen": "^0.6.2",
|
|
@@ -72,10 +88,10 @@
|
|
|
72
88
|
"@commitlint/config-conventional": "^20.0.0",
|
|
73
89
|
"@commitlint/cz-commitlint": "^20.1.0",
|
|
74
90
|
"@commitlint/types": "^20.0.0",
|
|
75
|
-
"@maz-ui/eslint-config": "4.3.
|
|
91
|
+
"@maz-ui/eslint-config": "4.3.2-beta.1",
|
|
76
92
|
"@types/node": "^24.10.1",
|
|
77
93
|
"@types/semver": "^7.7.1",
|
|
78
|
-
"@vitest/coverage-v8": "^4.0.
|
|
94
|
+
"@vitest/coverage-v8": "^4.0.10",
|
|
79
95
|
"cross-env": "^10.1.0",
|
|
80
96
|
"eslint": "^9.39.1",
|
|
81
97
|
"husky": "^9.1.7",
|
|
@@ -84,25 +100,11 @@
|
|
|
84
100
|
"memfs": "^4.51.0",
|
|
85
101
|
"typescript": "^5.9.3",
|
|
86
102
|
"unbuild": "^3.6.1",
|
|
87
|
-
"vitest": "^4.0.
|
|
103
|
+
"vitest": "^4.0.10"
|
|
88
104
|
},
|
|
89
105
|
"lint-staged": {
|
|
90
106
|
"*.{js,jsx,ts,tsx,mjs,mts,cjs,md,yml,json}": [
|
|
91
107
|
"eslint --fix"
|
|
92
108
|
]
|
|
93
|
-
},
|
|
94
|
-
"scripts": {
|
|
95
|
-
"preinstall": "npx only-allow pnpm",
|
|
96
|
-
"build": "unbuild",
|
|
97
|
-
"dev": "unbuild --stub",
|
|
98
|
-
"relizy": "node bin/relizy.mjs",
|
|
99
|
-
"rly": "node bin/relizy.mjs",
|
|
100
|
-
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
101
|
-
"lint": "cross-env NODE_ENV=production eslint .",
|
|
102
|
-
"lint:fix": "pnpm lint --fix",
|
|
103
|
-
"test:unit": "vitest run",
|
|
104
|
-
"test:unit:watch": "vitest watch",
|
|
105
|
-
"test:unit:coverage": "vitest run --coverage",
|
|
106
|
-
"pre-commit": "lint-staged"
|
|
107
109
|
}
|
|
108
|
-
}
|
|
110
|
+
}
|