create-thally-docs 0.10.31 → 0.10.33
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 +24 -0
- package/dist/{chunk-NIYRBHH7.js → chunk-5TBIIZHQ.js} +1 -1
- package/dist/{chunk-EXH4PYPC.js → chunk-DPYULA35.js} +2 -2
- package/dist/{chunk-IRFT5MUJ.js → chunk-HOQBNMQ4.js} +1 -1
- package/dist/{chunk-VLLFRIPP.js → chunk-I2OURFVJ.js} +47 -7
- package/dist/chunk-V5PERCVX.js +608 -0
- package/dist/index.js +31 -405
- package/dist/migrate/index.d.ts +23 -0
- package/dist/migrate/index.js +5 -5
- package/dist/release.js +1 -1
- package/dist/scaffold.js +4 -4
- package/dist/starter-sync.js +2 -2
- package/dist/starter-update.js +3 -3
- package/package.json +2 -2
- package/dist/chunk-DXD5Q42N.js +0 -113
package/README.md
CHANGED
|
@@ -63,6 +63,30 @@ projected into Thally. A live Mintlify URL uses the structured configuration
|
|
|
63
63
|
embedded by Mintlify when it is available, with bounded same-site crawling as a
|
|
64
64
|
fallback.
|
|
65
65
|
|
|
66
|
+
Repository-local JSX/TSX components and supported static dependencies are copied
|
|
67
|
+
into the customer-owned MDX registry. Simple interactive HTML blocks are moved
|
|
68
|
+
into client components, and locale/root routing is normalized. Unsupported
|
|
69
|
+
customizations remain visible as warnings rather than being silently dropped.
|
|
70
|
+
|
|
71
|
+
After importing, the CLI automatically installs dependencies for fresh projects,
|
|
72
|
+
runs static content checks and a production build, and writes
|
|
73
|
+
`migration-report.json`. A failed check or build returns a nonzero exit status;
|
|
74
|
+
the imported files remain available for inspection. Warnings may include
|
|
75
|
+
pre-existing source problems and compatibility limitations even when a build
|
|
76
|
+
passes. Review them before publishing. Use `--skip-validation` for an explicit
|
|
77
|
+
import-only run; its report is marked unverified. An existing `--into` project
|
|
78
|
+
without a build script is also reported as unverified.
|
|
79
|
+
|
|
80
|
+
Migration is a local build workflow for projects you own or trust. Dependency
|
|
81
|
+
installation and builds execute project code, including imported MDX and
|
|
82
|
+
JSX/TSX; they are not sandboxed. No additional confirmation or execution flag
|
|
83
|
+
is needed. `--skip-validation` also skips dependency installation.
|
|
84
|
+
|
|
85
|
+
A fresh migration leaves the destination repository unset. After creating the
|
|
86
|
+
new repository, set `site.repoUrl` in `src/data/site.ts` to its root GitHub URL
|
|
87
|
+
to enable edit and issue links. The source location remains in the migration
|
|
88
|
+
report; it is not used as the destination for reader feedback.
|
|
89
|
+
|
|
66
90
|
Prefer a single binary? Install [`@thallylabs/cli`](https://www.npmjs.com/package/@thallylabs/cli)
|
|
67
91
|
and use `thally init`, which delegates here.
|
|
68
92
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
readStarterReleaseManifest
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-HOQBNMQ4.js";
|
|
5
5
|
import {
|
|
6
6
|
STABLE_SCAFFOLD_RELEASE
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-I2OURFVJ.js";
|
|
8
8
|
|
|
9
9
|
// src/download.ts
|
|
10
10
|
import { Readable, Transform, pipeline } from "stream";
|
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
// src/stable-scaffold-release.json
|
|
4
4
|
var stable_scaffold_release_default = {
|
|
5
5
|
schemaVersion: 1,
|
|
6
|
-
id: "2026-09-07.
|
|
6
|
+
id: "2026-09-07.7a2c2638.b4a79ee4",
|
|
7
7
|
source: {
|
|
8
8
|
repository: "thallylabs/starter",
|
|
9
|
-
commitSha: "
|
|
10
|
-
treeSha: "
|
|
11
|
-
archiveUrl: "https://codeload.github.com/thallylabs/starter/tar.gz/
|
|
9
|
+
commitSha: "7a2c26389fcba84afe9cfeb91d68d96d007061bf",
|
|
10
|
+
treeSha: "fca330f03c39c6e7733411d0d7bc74223a7847a2",
|
|
11
|
+
archiveUrl: "https://codeload.github.com/thallylabs/starter/tar.gz/7a2c26389fcba84afe9cfeb91d68d96d007061bf",
|
|
12
12
|
manifestPath: "starter-release.json",
|
|
13
|
-
manifestSha256: "
|
|
13
|
+
manifestSha256: "e7cd79509dd39a35c9de23c6f67a0f4d98b1177c0dd6df252c1db909448490a5"
|
|
14
14
|
},
|
|
15
15
|
runtime: {
|
|
16
16
|
repository: "thallylabs/thally",
|
|
17
|
-
commitSha: "
|
|
18
|
-
treeSha: "
|
|
17
|
+
commitSha: "b4a79ee4055a86b06a38c2e8f8a1f13db9fdf06a",
|
|
18
|
+
treeSha: "ee790f51e68fe6bec5eb475e12035f0350951bd5",
|
|
19
19
|
contentSource: "assets",
|
|
20
20
|
identityContractVersion: 1
|
|
21
21
|
},
|
|
@@ -24,6 +24,46 @@ var stable_scaffold_release_default = {
|
|
|
24
24
|
|
|
25
25
|
// src/previous-scaffold-releases.json
|
|
26
26
|
var previous_scaffold_releases_default = [
|
|
27
|
+
{
|
|
28
|
+
schemaVersion: 1,
|
|
29
|
+
id: "2026-09-07.e15b143d.9b3be068",
|
|
30
|
+
source: {
|
|
31
|
+
repository: "thallylabs/starter",
|
|
32
|
+
commitSha: "e15b143d39935f3d6e5fe6127bffc2c3a7591318",
|
|
33
|
+
treeSha: "fff5cb413f83c8da17d2e4ec3df933d29a5613de",
|
|
34
|
+
archiveUrl: "https://codeload.github.com/thallylabs/starter/tar.gz/e15b143d39935f3d6e5fe6127bffc2c3a7591318",
|
|
35
|
+
manifestPath: "starter-release.json",
|
|
36
|
+
manifestSha256: "07fb1d733700c547874b88eaefcbfc4decef6acd204c765deb81ae3462ee66ba"
|
|
37
|
+
},
|
|
38
|
+
runtime: {
|
|
39
|
+
repository: "thallylabs/thally",
|
|
40
|
+
commitSha: "9b3be06826c9bc3a8b6402b25e597b3b7cc80cfe",
|
|
41
|
+
treeSha: "1a87aa11c382e3d8d88785b85af37e1b823dad86",
|
|
42
|
+
contentSource: "assets",
|
|
43
|
+
identityContractVersion: 1
|
|
44
|
+
},
|
|
45
|
+
starterVersion: 2
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
schemaVersion: 1,
|
|
49
|
+
id: "2026-09-07.06a4aca7.ad30d29f",
|
|
50
|
+
source: {
|
|
51
|
+
repository: "thallylabs/starter",
|
|
52
|
+
commitSha: "06a4aca7978ef3e0fc80389095db35f2ff37c96b",
|
|
53
|
+
treeSha: "13f3a315752259e58dac314233a4519dc2e0ec42",
|
|
54
|
+
archiveUrl: "https://codeload.github.com/thallylabs/starter/tar.gz/06a4aca7978ef3e0fc80389095db35f2ff37c96b",
|
|
55
|
+
manifestPath: "starter-release.json",
|
|
56
|
+
manifestSha256: "3a7cfa791c92ec24c6b0b755e2f1fe988e9fb408015ccc69f78681102e8bf65d"
|
|
57
|
+
},
|
|
58
|
+
runtime: {
|
|
59
|
+
repository: "thallylabs/thally",
|
|
60
|
+
commitSha: "ad30d29f79221092c873c611953097161fed0f60",
|
|
61
|
+
treeSha: "1a217f1304557264ed231774f5bb9d81dc639ed0",
|
|
62
|
+
contentSource: "assets",
|
|
63
|
+
identityContractVersion: 1
|
|
64
|
+
},
|
|
65
|
+
starterVersion: 2
|
|
66
|
+
},
|
|
27
67
|
{
|
|
28
68
|
schemaVersion: 1,
|
|
29
69
|
id: "2026-09-06.95ad2d40.928cbdb0",
|