create-thally-docs 0.9.0 → 0.10.0
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/chunk-ENQIF6MA.js +164 -0
- package/dist/{chunk-YWNWLSZ2.js → chunk-GAFCLXU4.js} +1 -1
- package/dist/{chunk-JNDRCCJV.js → chunk-GTGHYJXS.js} +15 -87
- package/dist/chunk-KXJT2MG5.js +520 -0
- package/dist/chunk-ORUAMPNF.js +187 -0
- package/dist/chunk-WMHBVXWW.js +65 -0
- package/dist/customize.d.ts +23 -77
- package/dist/customize.js +9 -29
- package/dist/index.js +7 -5
- package/dist/migrate/index.js +6 -4
- package/dist/release.d.ts +31 -23
- package/dist/release.js +3 -1
- package/dist/scaffold.d.ts +25 -10
- package/dist/scaffold.js +15 -12
- package/dist/starter-sync.d.ts +68 -0
- package/dist/starter-sync.js +22 -0
- package/dist/starter-update.d.ts +43 -0
- package/dist/starter-update.js +155 -0
- package/package.json +10 -2
- package/dist/chunk-BW7J7DJV.js +0 -769
- package/dist/chunk-PJW4JJIT.js +0 -31
package/dist/chunk-PJW4JJIT.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
// src/release.ts
|
|
4
|
-
var STABLE_SCAFFOLD_RELEASE = {
|
|
5
|
-
schemaVersion: 1,
|
|
6
|
-
id: "2026-08-04.b0094de4.e36d2bcf",
|
|
7
|
-
source: {
|
|
8
|
-
repository: "thallylabs/docs",
|
|
9
|
-
commitSha: "b0094de4fea84567eb12c39c6783fdae6820bb98",
|
|
10
|
-
treeSha: "ffd0a6fda07341ddd1ba164cb40acef796f89e2d",
|
|
11
|
-
archiveUrl: "https://codeload.github.com/thallylabs/docs/tar.gz/b0094de4fea84567eb12c39c6783fdae6820bb98"
|
|
12
|
-
},
|
|
13
|
-
runtime: {
|
|
14
|
-
repository: "thallylabs/thally",
|
|
15
|
-
commitSha: "e36d2bcff38f7638a77369e12773a7cab4d5d9ce",
|
|
16
|
-
treeSha: "1c8b0358d78d8caa14ed039bff6ab47c98b685d8",
|
|
17
|
-
contentSource: "assets",
|
|
18
|
-
identityContractVersion: 1
|
|
19
|
-
},
|
|
20
|
-
starterVersion: 1
|
|
21
|
-
};
|
|
22
|
-
function isStableScaffoldRelease(value) {
|
|
23
|
-
if (!value || typeof value !== "object" || Array.isArray(value)) return false;
|
|
24
|
-
const candidate = value;
|
|
25
|
-
return candidate.schemaVersion === STABLE_SCAFFOLD_RELEASE.schemaVersion && candidate.id === STABLE_SCAFFOLD_RELEASE.id && candidate.starterVersion === STABLE_SCAFFOLD_RELEASE.starterVersion && candidate.source?.repository === STABLE_SCAFFOLD_RELEASE.source.repository && candidate.source?.commitSha === STABLE_SCAFFOLD_RELEASE.source.commitSha && candidate.source?.treeSha === STABLE_SCAFFOLD_RELEASE.source.treeSha && candidate.source?.archiveUrl === STABLE_SCAFFOLD_RELEASE.source.archiveUrl && candidate.runtime?.repository === STABLE_SCAFFOLD_RELEASE.runtime.repository && candidate.runtime?.commitSha === STABLE_SCAFFOLD_RELEASE.runtime.commitSha && candidate.runtime?.treeSha === STABLE_SCAFFOLD_RELEASE.runtime.treeSha && candidate.runtime?.contentSource === STABLE_SCAFFOLD_RELEASE.runtime.contentSource && candidate.runtime?.identityContractVersion === STABLE_SCAFFOLD_RELEASE.runtime.identityContractVersion;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export {
|
|
29
|
-
STABLE_SCAFFOLD_RELEASE,
|
|
30
|
-
isStableScaffoldRelease
|
|
31
|
-
};
|