@flydocs/cli 0.5.0-beta.8 → 0.5.0-beta.9
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 +9 -7
- package/package.json +1 -1
- package/template/.flydocs/config.json +1 -1
- package/template/.flydocs/version +1 -1
- package/template/CHANGELOG.md +11 -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.9";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
}
|
|
@@ -136,6 +136,9 @@ var init_template = __esm({
|
|
|
136
136
|
|
|
137
137
|
// src/lib/ui.ts
|
|
138
138
|
import pc2 from "picocolors";
|
|
139
|
+
function hyperlink(text3, url) {
|
|
140
|
+
return `\x1B]8;;${url}\x1B\\${text3}\x1B]8;;\x1B\\`;
|
|
141
|
+
}
|
|
139
142
|
function printStatus(message) {
|
|
140
143
|
console.log(`${pc2.green("\u2714")} ${message}`);
|
|
141
144
|
}
|
|
@@ -162,10 +165,10 @@ function printBanner(version) {
|
|
|
162
165
|
console.log(` ${pinkBlock12}`);
|
|
163
166
|
console.log(` ${pinkBlock4}`);
|
|
164
167
|
console.log(
|
|
165
|
-
` ${pinkBlock4} ${purpleBlock12} ${bold("
|
|
168
|
+
` ${pinkBlock4} ${purpleBlock12} ${bold("FlyDocs")} ${dim("(Beta)")}`
|
|
166
169
|
);
|
|
167
170
|
console.log(
|
|
168
|
-
` ${purpleBlock12} ${dim("
|
|
171
|
+
` ${purpleBlock12} ${dim("Spec-Driven Context That Helps Engineers Fly")}`
|
|
169
172
|
);
|
|
170
173
|
console.log(` ${purpleBlock4}`);
|
|
171
174
|
console.log(` ${purpleBlock4} ${dim(`v${version}`)}`);
|
|
@@ -189,17 +192,16 @@ function printCompletionBox(title, lines) {
|
|
|
189
192
|
}
|
|
190
193
|
function printBetaCta() {
|
|
191
194
|
const dim = pc2.dim;
|
|
195
|
+
const url = "https://www.flydocs.ai?utm_source=cli&utm_medium=install&utm_campaign=beta";
|
|
192
196
|
console.log(
|
|
193
197
|
dim(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500")
|
|
194
198
|
);
|
|
195
199
|
console.log();
|
|
196
200
|
console.log(` ${pc2.bold("Join the FlyDocs Closed Beta")}`);
|
|
197
201
|
console.log(
|
|
198
|
-
` ${dim("Early access to cloud features,
|
|
199
|
-
);
|
|
200
|
-
console.log(
|
|
201
|
-
` ${pc2.cyan("https://www.flydocs.ai?utm_source=cli&utm_medium=install&utm_campaign=beta")}`
|
|
202
|
+
` ${dim("Early access to cloud features, web portal, and more.")}`
|
|
202
203
|
);
|
|
204
|
+
console.log(` ${pc2.cyan(hyperlink("flydocs.ai", url))}`);
|
|
203
205
|
console.log();
|
|
204
206
|
}
|
|
205
207
|
var init_ui = __esm({
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.0-beta.
|
|
1
|
+
0.5.0-beta.9
|
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.9] — 2026-02-22
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Banner copy** — title changed from "FlyDocs Core" to "FlyDocs (Beta)",
|
|
15
|
+
subtitle changed to "Spec-Driven Context That Helps Engineers Fly"
|
|
16
|
+
- **Beta CTA** — "priority support" replaced with "web portal", URL now
|
|
17
|
+
renders as clickable `flydocs.ai` hyperlink via OSC 8 terminal escape
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
10
21
|
## [0.5.0-beta.8] — 2026-02-22
|
|
11
22
|
|
|
12
23
|
### Added
|
package/template/manifest.json
CHANGED