@flydocs/cli 0.5.0-beta.10 → 0.5.0-beta.11
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 -3
- 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.11";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
}
|
|
@@ -137,7 +137,7 @@ var init_template = __esm({
|
|
|
137
137
|
// src/lib/ui.ts
|
|
138
138
|
import pc2 from "picocolors";
|
|
139
139
|
function hyperlink(text3, url) {
|
|
140
|
-
return `\x1B]8;;${url}\
|
|
140
|
+
return `\x1B]8;;${url}\x07${text3}\x1B]8;;\x07`;
|
|
141
141
|
}
|
|
142
142
|
function printStatus(message) {
|
|
143
143
|
console.log(`${pc2.green("\u2714")} ${message}`);
|
|
@@ -201,7 +201,7 @@ function printBetaCta() {
|
|
|
201
201
|
console.log(
|
|
202
202
|
` ${dim("Early access to cloud features, web portal, and more.")}`
|
|
203
203
|
);
|
|
204
|
-
console.log(` ${pc2.cyan(
|
|
204
|
+
console.log(` ${hyperlink(pc2.cyan("https://www.flydocs.ai"), url)}`);
|
|
205
205
|
console.log();
|
|
206
206
|
}
|
|
207
207
|
var init_ui = __esm({
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.0-beta.
|
|
1
|
+
0.5.0-beta.11
|
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.11] — 2026-02-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Beta CTA hyperlink** — fixed OSC 8 escape sequence (BEL terminator, color inside
|
|
15
|
+
hyperlink wrapper). Display text changed to `https://www.flydocs.ai` for terminals
|
|
16
|
+
that don't support clickable links. UTM tracking preserved in the link target.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
10
20
|
## [0.5.0-beta.10] — 2026-02-22
|
|
11
21
|
|
|
12
22
|
### Fixed
|
package/template/manifest.json
CHANGED