cullit 2.0.6 → 2.1.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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ cullit generate --from v1.8.0 --provider none --template customer-facing
|
|
|
46
46
|
## Licensing
|
|
47
47
|
|
|
48
48
|
- Public npm package: free local/template workflow only
|
|
49
|
-
- Paid tiers (
|
|
49
|
+
- Paid tiers (Pro, Team, Enterprise): delivered through the private package `@cullit/licensed`
|
|
50
50
|
- `CULLIT_API_KEY`: used by licensed hosted/private Cullit surfaces
|
|
51
51
|
- Need Pro or Team access: https://cullit.io/pricing
|
|
52
52
|
|
package/dist/index.js
CHANGED
|
@@ -204,7 +204,7 @@ async function runGenerate(from, to, opts) {
|
|
|
204
204
|
const templateProfile = opts.template || opts.templateProfile || opts["template-profile"];
|
|
205
205
|
const license = resolveLicense();
|
|
206
206
|
if (logLevel !== "quiet") {
|
|
207
|
-
const tierLabel = license.tier === "pro" ? "\u{1F511} Pro" : "\u{1F193} Free";
|
|
207
|
+
const tierLabel = license.tier === "enterprise" ? "\u{1F3E2} Enterprise" : license.tier === "team" ? "\u{1F465} Team" : license.tier === "pro" ? "\u{1F511} Pro" : "\u{1F193} Free";
|
|
208
208
|
logger.info(`\xBB License: ${tierLabel}`);
|
|
209
209
|
}
|
|
210
210
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cullit",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Public Cullit CLI for local, template-based release notes. Licensed AI and integrations are delivered separately.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"node": ">=22"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@cullit/
|
|
38
|
-
"@cullit/
|
|
37
|
+
"@cullit/core": "2.1.0",
|
|
38
|
+
"@cullit/config": "2.1.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsup src/index.ts --format esm --clean",
|