@flydocs/cli 0.5.0-beta.14 → 0.5.0-beta.15
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.js
CHANGED
|
@@ -15,7 +15,7 @@ var CLI_VERSION, CLI_NAME, PACKAGE_NAME;
|
|
|
15
15
|
var init_constants = __esm({
|
|
16
16
|
"src/lib/constants.ts"() {
|
|
17
17
|
"use strict";
|
|
18
|
-
CLI_VERSION = "0.5.0-beta.
|
|
18
|
+
CLI_VERSION = "0.5.0-beta.15";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
}
|
|
@@ -134,9 +134,6 @@ var init_template = __esm({
|
|
|
134
134
|
|
|
135
135
|
// src/lib/ui.ts
|
|
136
136
|
import pc2 from "picocolors";
|
|
137
|
-
function hyperlink(text3, url) {
|
|
138
|
-
return `\x1B]8;;${url}\x07${text3}\x1B]8;;\x07`;
|
|
139
|
-
}
|
|
140
137
|
function shadow(text3) {
|
|
141
138
|
return `\x1B[38;2;55;45;70m${text3}\x1B[0m`;
|
|
142
139
|
}
|
|
@@ -237,11 +234,13 @@ function printBetaCta() {
|
|
|
237
234
|
);
|
|
238
235
|
console.log();
|
|
239
236
|
console.log(
|
|
240
|
-
` ${
|
|
237
|
+
` ${pc2.bold(pc2.cyan("Join the Discord"))} for upcoming features, support, and early access to what's next.`
|
|
241
238
|
);
|
|
239
|
+
console.log(` ${dim("Invite link:")}`);
|
|
240
|
+
console.log(` ${pc2.cyan(discordUrl)}`);
|
|
242
241
|
console.log();
|
|
243
242
|
console.log(
|
|
244
|
-
` ${dim("Docs and updates:")} ${
|
|
243
|
+
` ${dim("Docs and updates:")} ${pc2.cyan("https://www.flydocs.ai")}`
|
|
245
244
|
);
|
|
246
245
|
console.log();
|
|
247
246
|
}
|
package/package.json
CHANGED
|
@@ -588,9 +588,11 @@ What's coming next:
|
|
|
588
588
|
→ Web portal — project setup, team visibility, session analytics
|
|
589
589
|
→ Cost intelligence — AI usage tracking and spend analysis
|
|
590
590
|
|
|
591
|
-
Join the
|
|
592
|
-
|
|
593
|
-
|
|
591
|
+
Join the Discord for upcoming features, support, and early access to what's next.
|
|
592
|
+
Invite link:
|
|
593
|
+
https://discord.com/invite/YAkjePmZTQ
|
|
594
|
+
|
|
595
|
+
Docs and updates: https://www.flydocs.ai
|
|
594
596
|
|
|
595
597
|
─────────────────────────────────────────────────────
|
|
596
598
|
```
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.0-beta.
|
|
1
|
+
0.5.0-beta.15
|
package/template/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ Versioning: [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.5.0-beta.15] — 2026-02-24
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **CTA links use full URLs** — Discord and flydocs.ai links now display as full URLs
|
|
15
|
+
(`https://discord.com/invite/...`, `https://www.flydocs.ai`) for terminal compatibility.
|
|
16
|
+
Discord section shows "Join the Discord" heading with invite link on its own line.
|
|
17
|
+
Setup command CTA updated to match.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
10
21
|
## [0.5.0-beta.14] — 2026-02-24
|
|
11
22
|
|
|
12
23
|
### Changed
|
package/template/manifest.json
CHANGED