relizy 0.3.0 → 1.0.0-beta.1
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 +111 -1093
- package/dist/cli.mjs +18 -3
- package/dist/index.d.mts +394 -23
- package/dist/index.d.ts +394 -23
- package/dist/index.mjs +2 -2
- package/dist/shared/{relizy.B4guss__.mjs → relizy.Bpj1yhpn.mjs} +2136 -1470
- package/package.json +20 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "relizy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.0-beta.1",
|
|
5
5
|
"description": "Changelogen adapter for monorepo management with unified and independent versioning",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -54,6 +54,18 @@
|
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=20.0.0"
|
|
56
56
|
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@slack/web-api": "^7.0.0",
|
|
59
|
+
"twitter-api-v2": "^1.20.0"
|
|
60
|
+
},
|
|
61
|
+
"peerDependenciesMeta": {
|
|
62
|
+
"@slack/web-api": {
|
|
63
|
+
"optional": true
|
|
64
|
+
},
|
|
65
|
+
"twitter-api-v2": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
57
69
|
"dependencies": {
|
|
58
70
|
"@inquirer/prompts": "^8.1.0",
|
|
59
71
|
"@maz-ui/node": "4.3.4-beta.0",
|
|
@@ -73,6 +85,7 @@
|
|
|
73
85
|
"@commitlint/cz-commitlint": "^20.2.0",
|
|
74
86
|
"@commitlint/types": "^20.2.0",
|
|
75
87
|
"@maz-ui/eslint-config": "4.3.2",
|
|
88
|
+
"@slack/web-api": "^7.12.0",
|
|
76
89
|
"@types/node": "^25.0.3",
|
|
77
90
|
"@types/semver": "^7.7.1",
|
|
78
91
|
"@vitest/coverage-v8": "^4.0.16",
|
|
@@ -82,6 +95,7 @@
|
|
|
82
95
|
"jiti": "^2.6.1",
|
|
83
96
|
"lint-staged": "^16.2.7",
|
|
84
97
|
"memfs": "^4.51.1",
|
|
98
|
+
"twitter-api-v2": "^1.28.0",
|
|
85
99
|
"typescript": "^5.9.3",
|
|
86
100
|
"unbuild": "^3.6.1",
|
|
87
101
|
"vitest": "^4.0.16"
|
|
@@ -93,14 +107,17 @@
|
|
|
93
107
|
},
|
|
94
108
|
"scripts": {
|
|
95
109
|
"preinstall": "npx only-allow pnpm",
|
|
96
|
-
"postinstall": "npx husky",
|
|
97
110
|
"build": "unbuild",
|
|
98
111
|
"dev": "unbuild --stub",
|
|
99
112
|
"relizy": "node bin/relizy.mjs",
|
|
100
113
|
"rly": "node bin/relizy.mjs",
|
|
101
114
|
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
102
115
|
"lint": "cross-env NODE_ENV=production eslint .",
|
|
103
|
-
"lint:fix": "
|
|
116
|
+
"lint:fix": "cross-env NODE_ENV=production eslint . --fix",
|
|
117
|
+
"lint:all": "pnpm lint && pnpm lint:docs",
|
|
118
|
+
"lint:fix:all": "pnpm lint:fix && pnpm lint:docs:fix",
|
|
119
|
+
"lint:docs": "cross-env NODE_ENV=production pnpm -F docs lint",
|
|
120
|
+
"lint:docs:fix": "pnpm lint:docs --fix",
|
|
104
121
|
"test:unit": "vitest run",
|
|
105
122
|
"test:unit:watch": "vitest watch",
|
|
106
123
|
"test:unit:coverage": "vitest run --coverage",
|