@flydocs/cli 0.5.0-beta.13 → 0.5.0-beta.14
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 +3 -6
- package/package.json +1 -1
- package/template/.flydocs/config.json +1 -1
- package/template/.flydocs/version +1 -1
- package/template/CHANGELOG.md +10 -0
- package/template/manifest.json +1 -1
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.14";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
}
|
|
@@ -237,14 +237,11 @@ function printBetaCta() {
|
|
|
237
237
|
);
|
|
238
238
|
console.log();
|
|
239
239
|
console.log(
|
|
240
|
-
` ${pc2.bold("Join the
|
|
241
|
-
);
|
|
242
|
-
console.log(
|
|
243
|
-
` ${hyperlink(pc2.cyan("discord.com/invite/YAkjePmZTQ"), discordUrl)}`
|
|
240
|
+
` ${hyperlink(pc2.bold(pc2.cyan("Join the Discord")), discordUrl)} for upcoming features, support, and early access to what's next.`
|
|
244
241
|
);
|
|
245
242
|
console.log();
|
|
246
243
|
console.log(
|
|
247
|
-
` ${dim("Docs and updates:")} ${hyperlink(pc2.cyan("flydocs.ai"), siteUrl)}`
|
|
244
|
+
` ${dim("Docs and updates:")} ${hyperlink(pc2.bold(pc2.cyan("flydocs.ai")), siteUrl)}`
|
|
248
245
|
);
|
|
249
246
|
console.log();
|
|
250
247
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.0-beta.
|
|
1
|
+
0.5.0-beta.14
|
package/template/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ Versioning: [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.5.0-beta.14] — 2026-02-24
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Discord CTA restyled** — "Join the Discord" is now a bold cyan clickable hyperlink
|
|
15
|
+
with descriptive copy ("for upcoming features, support, and early access to what's
|
|
16
|
+
next"), matching the docs page CTA style. "flydocs.ai" link also bold cyan and clickable.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
10
20
|
## [0.5.0-beta.13] — 2026-02-24
|
|
11
21
|
|
|
12
22
|
### Changed
|
package/template/manifest.json
CHANGED