@orkestrel/scaffold 0.0.48 → 0.0.49
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/bin/main.js +271 -53
- package/dist/bin/main.js.map +1 -1
- package/dist/host/agents/orchestration.md +7 -0
- package/dist/host/agents/skills/orkestrel-falsify/SKILL.md +4 -0
- package/dist/host/claude/rules/quality.md +4 -1
- package/dist/host/guides/scaffold.md +150 -65
- package/dist/host/manifest.json +217 -109
- package/dist/host/tests/config.test.ts +103 -1
- package/dist/src/core/index.cjs +32 -4
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +65 -8
- package/dist/src/core/index.d.ts +65 -8
- package/dist/src/core/index.js +31 -5
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs +769 -137
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +681 -376
- package/dist/src/server/index.d.ts +681 -376
- package/dist/src/server/index.js +766 -141
- package/dist/src/server/index.js.map +1 -1
- package/package.json +3 -2
|
@@ -661,7 +661,7 @@ export declare type CatalogEntry = {
|
|
|
661
661
|
readonly note?: never;
|
|
662
662
|
} | {
|
|
663
663
|
readonly name: string;
|
|
664
|
-
readonly lookup: 'missing' | 'failed';
|
|
664
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
665
665
|
readonly note: string;
|
|
666
666
|
readonly version?: never;
|
|
667
667
|
readonly dependencies?: never;
|
|
@@ -1427,6 +1427,9 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1427
1427
|
/** Exact lowercase hexadecimal bytes: two digits per byte, and empty content is valid. */
|
|
1428
1428
|
export declare const HEX_PATTERN: RegExp;
|
|
1429
1429
|
|
|
1430
|
+
/** The repository-relative path where the committed vendored-file inventory is served. */
|
|
1431
|
+
export declare const HOST_INVENTORY_PATH = "host.json";
|
|
1432
|
+
|
|
1430
1433
|
/**
|
|
1431
1434
|
* The paths byte-copied from the vendored data root, frozen.
|
|
1432
1435
|
*
|
|
@@ -1464,6 +1467,36 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1464
1467
|
readonly content?: never;
|
|
1465
1468
|
}
|
|
1466
1469
|
|
|
1470
|
+
/**
|
|
1471
|
+
* One vendored file read from the repository, beside the target bytes it answers for.
|
|
1472
|
+
*
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* `path` is the target-relative path, which is also the checkout-relative path
|
|
1475
|
+
* the repository serves, so the file read and the file answered for cannot
|
|
1476
|
+
* drift apart. A found lookup carries the file's exact bytes as hexadecimal;
|
|
1477
|
+
* one that produced no answer carries the cause and no bytes. `observed` is the target's
|
|
1478
|
+
* file as exact bytes when the read was made, and is absent when the target
|
|
1479
|
+
* holds no such file; it is the precondition the write is held to, exactly as
|
|
1480
|
+
* {@link Finding.observed} is.
|
|
1481
|
+
*
|
|
1482
|
+
* A found row may carry the target's own bytes rather than read ones, where
|
|
1483
|
+
* those bytes already satisfy the claim the read was going to check. They are
|
|
1484
|
+
* the same bytes either way, so the row does not record which it holds.
|
|
1485
|
+
*/
|
|
1486
|
+
export declare type HostFile = {
|
|
1487
|
+
readonly path: string;
|
|
1488
|
+
readonly lookup: 'found';
|
|
1489
|
+
readonly hex: string;
|
|
1490
|
+
readonly observed?: string;
|
|
1491
|
+
readonly note?: never;
|
|
1492
|
+
} | {
|
|
1493
|
+
readonly path: string;
|
|
1494
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
1495
|
+
readonly note: string;
|
|
1496
|
+
readonly observed?: string;
|
|
1497
|
+
readonly hex?: never;
|
|
1498
|
+
};
|
|
1499
|
+
|
|
1467
1500
|
/**
|
|
1468
1501
|
* A vendored file whose exact bytes have been read, so its content can be compared.
|
|
1469
1502
|
*
|
|
@@ -1664,6 +1697,28 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1664
1697
|
*/
|
|
1665
1698
|
export declare const isContent: Guard<string>;
|
|
1666
1699
|
|
|
1700
|
+
/**
|
|
1701
|
+
* Checks whether another surface owns the vendored bytes at a path.
|
|
1702
|
+
*
|
|
1703
|
+
* @param path - The target-relative vendored path to test.
|
|
1704
|
+
* @returns `true` for the catalog agent file and for a Markdown guide mirror;
|
|
1705
|
+
* `false` otherwise.
|
|
1706
|
+
*
|
|
1707
|
+
* @remarks
|
|
1708
|
+
* The materializer keeps these paths presence-owned because the catalog or
|
|
1709
|
+
* mirror surface writes their bytes. A live host fill therefore keeps the
|
|
1710
|
+
* installed floor's bytes for them and requests only the host-owned paths.
|
|
1711
|
+
*
|
|
1712
|
+
* @example
|
|
1713
|
+
* ```ts
|
|
1714
|
+
* import { isDeferredPath } from '@orkestrel/scaffold'
|
|
1715
|
+
*
|
|
1716
|
+
* isDeferredPath('guides/router.md') // true
|
|
1717
|
+
* isDeferredPath('AGENTS.md') // false
|
|
1718
|
+
* ```
|
|
1719
|
+
*/
|
|
1720
|
+
export declare function isDeferredPath(path: string): boolean;
|
|
1721
|
+
|
|
1667
1722
|
/**
|
|
1668
1723
|
* Narrow a value to a {@link Dependency}.
|
|
1669
1724
|
*
|
|
@@ -1883,12 +1938,14 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1883
1938
|
*
|
|
1884
1939
|
* @remarks
|
|
1885
1940
|
* `found` carries the answer. `missing` is an upstream `404`, which is a
|
|
1886
|
-
* definite answer that the package is not published there. `
|
|
1887
|
-
*
|
|
1888
|
-
*
|
|
1889
|
-
*
|
|
1941
|
+
* definite answer that the package is not published there. `unmatched` means
|
|
1942
|
+
* the answer was read but no version admits under the declared range. `failed`
|
|
1943
|
+
* means the read did not complete because of a transport fault, timeout, byte
|
|
1944
|
+
* bound, redirect, or refused response shape. Holding these apart from how a
|
|
1945
|
+
* local copy compares is what lets a verdict omit the value it never received
|
|
1946
|
+
* instead of inventing an empty one.
|
|
1890
1947
|
*/
|
|
1891
|
-
export declare type Lookup = 'found' | 'missing' | 'failed';
|
|
1948
|
+
export declare type Lookup = 'found' | 'missing' | 'unmatched' | 'failed';
|
|
1892
1949
|
|
|
1893
1950
|
/**
|
|
1894
1951
|
* Project a package manifest's text to the `@orkestrel/*` packages it declares.
|
|
@@ -2151,7 +2208,7 @@ export declare class Compiler implements CompilerInterface {
|
|
|
2151
2208
|
} | {
|
|
2152
2209
|
readonly name: string;
|
|
2153
2210
|
readonly path: string;
|
|
2154
|
-
readonly lookup: 'missing' | 'failed';
|
|
2211
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
2155
2212
|
readonly note: string;
|
|
2156
2213
|
readonly observed?: string;
|
|
2157
2214
|
readonly content?: never;
|
|
@@ -2588,7 +2645,7 @@ export declare class Compiler implements CompilerInterface {
|
|
|
2588
2645
|
} | {
|
|
2589
2646
|
readonly name: string;
|
|
2590
2647
|
readonly range: string;
|
|
2591
|
-
readonly lookup: 'missing' | 'failed';
|
|
2648
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
2592
2649
|
readonly note: string;
|
|
2593
2650
|
readonly major?: number;
|
|
2594
2651
|
readonly latest?: never;
|
package/dist/src/core/index.d.ts
CHANGED
|
@@ -661,7 +661,7 @@ export declare type CatalogEntry = {
|
|
|
661
661
|
readonly note?: never;
|
|
662
662
|
} | {
|
|
663
663
|
readonly name: string;
|
|
664
|
-
readonly lookup: 'missing' | 'failed';
|
|
664
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
665
665
|
readonly note: string;
|
|
666
666
|
readonly version?: never;
|
|
667
667
|
readonly dependencies?: never;
|
|
@@ -1427,6 +1427,9 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1427
1427
|
/** Exact lowercase hexadecimal bytes: two digits per byte, and empty content is valid. */
|
|
1428
1428
|
export declare const HEX_PATTERN: RegExp;
|
|
1429
1429
|
|
|
1430
|
+
/** The repository-relative path where the committed vendored-file inventory is served. */
|
|
1431
|
+
export declare const HOST_INVENTORY_PATH = "host.json";
|
|
1432
|
+
|
|
1430
1433
|
/**
|
|
1431
1434
|
* The paths byte-copied from the vendored data root, frozen.
|
|
1432
1435
|
*
|
|
@@ -1464,6 +1467,36 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1464
1467
|
readonly content?: never;
|
|
1465
1468
|
}
|
|
1466
1469
|
|
|
1470
|
+
/**
|
|
1471
|
+
* One vendored file read from the repository, beside the target bytes it answers for.
|
|
1472
|
+
*
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* `path` is the target-relative path, which is also the checkout-relative path
|
|
1475
|
+
* the repository serves, so the file read and the file answered for cannot
|
|
1476
|
+
* drift apart. A found lookup carries the file's exact bytes as hexadecimal;
|
|
1477
|
+
* one that produced no answer carries the cause and no bytes. `observed` is the target's
|
|
1478
|
+
* file as exact bytes when the read was made, and is absent when the target
|
|
1479
|
+
* holds no such file; it is the precondition the write is held to, exactly as
|
|
1480
|
+
* {@link Finding.observed} is.
|
|
1481
|
+
*
|
|
1482
|
+
* A found row may carry the target's own bytes rather than read ones, where
|
|
1483
|
+
* those bytes already satisfy the claim the read was going to check. They are
|
|
1484
|
+
* the same bytes either way, so the row does not record which it holds.
|
|
1485
|
+
*/
|
|
1486
|
+
export declare type HostFile = {
|
|
1487
|
+
readonly path: string;
|
|
1488
|
+
readonly lookup: 'found';
|
|
1489
|
+
readonly hex: string;
|
|
1490
|
+
readonly observed?: string;
|
|
1491
|
+
readonly note?: never;
|
|
1492
|
+
} | {
|
|
1493
|
+
readonly path: string;
|
|
1494
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
1495
|
+
readonly note: string;
|
|
1496
|
+
readonly observed?: string;
|
|
1497
|
+
readonly hex?: never;
|
|
1498
|
+
};
|
|
1499
|
+
|
|
1467
1500
|
/**
|
|
1468
1501
|
* A vendored file whose exact bytes have been read, so its content can be compared.
|
|
1469
1502
|
*
|
|
@@ -1664,6 +1697,28 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1664
1697
|
*/
|
|
1665
1698
|
export declare const isContent: Guard<string>;
|
|
1666
1699
|
|
|
1700
|
+
/**
|
|
1701
|
+
* Checks whether another surface owns the vendored bytes at a path.
|
|
1702
|
+
*
|
|
1703
|
+
* @param path - The target-relative vendored path to test.
|
|
1704
|
+
* @returns `true` for the catalog agent file and for a Markdown guide mirror;
|
|
1705
|
+
* `false` otherwise.
|
|
1706
|
+
*
|
|
1707
|
+
* @remarks
|
|
1708
|
+
* The materializer keeps these paths presence-owned because the catalog or
|
|
1709
|
+
* mirror surface writes their bytes. A live host fill therefore keeps the
|
|
1710
|
+
* installed floor's bytes for them and requests only the host-owned paths.
|
|
1711
|
+
*
|
|
1712
|
+
* @example
|
|
1713
|
+
* ```ts
|
|
1714
|
+
* import { isDeferredPath } from '@orkestrel/scaffold'
|
|
1715
|
+
*
|
|
1716
|
+
* isDeferredPath('guides/router.md') // true
|
|
1717
|
+
* isDeferredPath('AGENTS.md') // false
|
|
1718
|
+
* ```
|
|
1719
|
+
*/
|
|
1720
|
+
export declare function isDeferredPath(path: string): boolean;
|
|
1721
|
+
|
|
1667
1722
|
/**
|
|
1668
1723
|
* Narrow a value to a {@link Dependency}.
|
|
1669
1724
|
*
|
|
@@ -1883,12 +1938,14 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1883
1938
|
*
|
|
1884
1939
|
* @remarks
|
|
1885
1940
|
* `found` carries the answer. `missing` is an upstream `404`, which is a
|
|
1886
|
-
* definite answer that the package is not published there. `
|
|
1887
|
-
*
|
|
1888
|
-
*
|
|
1889
|
-
*
|
|
1941
|
+
* definite answer that the package is not published there. `unmatched` means
|
|
1942
|
+
* the answer was read but no version admits under the declared range. `failed`
|
|
1943
|
+
* means the read did not complete because of a transport fault, timeout, byte
|
|
1944
|
+
* bound, redirect, or refused response shape. Holding these apart from how a
|
|
1945
|
+
* local copy compares is what lets a verdict omit the value it never received
|
|
1946
|
+
* instead of inventing an empty one.
|
|
1890
1947
|
*/
|
|
1891
|
-
export declare type Lookup = 'found' | 'missing' | 'failed';
|
|
1948
|
+
export declare type Lookup = 'found' | 'missing' | 'unmatched' | 'failed';
|
|
1892
1949
|
|
|
1893
1950
|
/**
|
|
1894
1951
|
* Project a package manifest's text to the `@orkestrel/*` packages it declares.
|
|
@@ -2151,7 +2208,7 @@ export declare class Compiler implements CompilerInterface {
|
|
|
2151
2208
|
} | {
|
|
2152
2209
|
readonly name: string;
|
|
2153
2210
|
readonly path: string;
|
|
2154
|
-
readonly lookup: 'missing' | 'failed';
|
|
2211
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
2155
2212
|
readonly note: string;
|
|
2156
2213
|
readonly observed?: string;
|
|
2157
2214
|
readonly content?: never;
|
|
@@ -2588,7 +2645,7 @@ export declare class Compiler implements CompilerInterface {
|
|
|
2588
2645
|
} | {
|
|
2589
2646
|
readonly name: string;
|
|
2590
2647
|
readonly range: string;
|
|
2591
|
-
readonly lookup: 'missing' | 'failed';
|
|
2648
|
+
readonly lookup: 'missing' | 'unmatched' | 'failed';
|
|
2592
2649
|
readonly note: string;
|
|
2593
2650
|
readonly major?: number;
|
|
2594
2651
|
readonly latest?: never;
|
package/dist/src/core/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { fillTemplate } from "@orkestrel/template";
|
|
|
3
3
|
import { Emitter } from "@orkestrel/emitter";
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@orkestrel/scaffold",
|
|
6
|
-
version: "0.0.
|
|
6
|
+
version: "0.0.49",
|
|
7
7
|
description: "Scaffold workspaces with five commands: new, audit, repair, catalog, and overwrite.",
|
|
8
8
|
keywords: [
|
|
9
9
|
"audit",
|
|
@@ -83,6 +83,7 @@ var package_default = {
|
|
|
83
83
|
"build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
|
|
84
84
|
"build:src:bin": "vite build --config configs/src/vite.bin.config.ts",
|
|
85
85
|
"build:host": "node -e \"import('./dist/src/server/index.js').then((m)=>{const n=m.stageHost(process.cwd(),'dist/host').length;console.log('build-host: staged '+n+' file(s) into dist/host')})\"",
|
|
86
|
+
"build:inventory": "node -e \"import('./dist/src/server/index.js').then((m)=>{const p=process.argv[1]??'host.json',n=m.stageInventory(process.cwd(),p).entries.length;console.log('build-inventory: staged '+n+' file(s) into '+p)})\"",
|
|
86
87
|
"prepack": "npm run build",
|
|
87
88
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release"
|
|
88
89
|
},
|
|
@@ -99,7 +100,7 @@ var package_default = {
|
|
|
99
100
|
"@orkestrel/guide": "^0.0.12",
|
|
100
101
|
"@orkestrel/html": "^0.0.4",
|
|
101
102
|
"@orkestrel/probe": "^0.0.2",
|
|
102
|
-
"@orkestrel/test": "^0.0.
|
|
103
|
+
"@orkestrel/test": "^0.0.10",
|
|
103
104
|
"@types/node": "^26.2.0",
|
|
104
105
|
"@vitest/browser-playwright": "^4.1.11",
|
|
105
106
|
"oxfmt": "^0.64.0",
|
|
@@ -251,6 +252,8 @@ var HOST_PATHS = Object.freeze([
|
|
|
251
252
|
"guides/guide.md",
|
|
252
253
|
"guides/scaffold.md"
|
|
253
254
|
]);
|
|
255
|
+
/** The repository-relative path where the committed vendored-file inventory is served. */
|
|
256
|
+
var HOST_INVENTORY_PATH = "host.json";
|
|
254
257
|
/**
|
|
255
258
|
* The vendored paths whose present bytes belong to each workspace, frozen.
|
|
256
259
|
*
|
|
@@ -2061,7 +2064,7 @@ var isMirror = unionOf(recordOf({
|
|
|
2061
2064
|
}, ["observed"]), recordOf({
|
|
2062
2065
|
name: isDependencyName,
|
|
2063
2066
|
path: isPath,
|
|
2064
|
-
lookup: literalOf("missing", "failed"),
|
|
2067
|
+
lookup: literalOf("missing", "unmatched", "failed"),
|
|
2065
2068
|
note: isString,
|
|
2066
2069
|
observed: isHex
|
|
2067
2070
|
}, ["observed"]));
|
|
@@ -2079,7 +2082,7 @@ var isCatalogEntry = unionOf(recordOf({
|
|
|
2079
2082
|
dependencies: andOf(isCollection, arrayOf(isDependency))
|
|
2080
2083
|
}), recordOf({
|
|
2081
2084
|
name: isDependencyName,
|
|
2082
|
-
lookup: literalOf("missing", "failed"),
|
|
2085
|
+
lookup: literalOf("missing", "unmatched", "failed"),
|
|
2083
2086
|
note: isString
|
|
2084
2087
|
}));
|
|
2085
2088
|
/**
|
|
@@ -2410,6 +2413,29 @@ function matchesOrchestrationPath(path) {
|
|
|
2410
2413
|
return ORCHESTRATION_PATH_PREFIXES.some((prefix) => path.startsWith(prefix));
|
|
2411
2414
|
}
|
|
2412
2415
|
/**
|
|
2416
|
+
* Checks whether another surface owns the vendored bytes at a path.
|
|
2417
|
+
*
|
|
2418
|
+
* @param path - The target-relative vendored path to test.
|
|
2419
|
+
* @returns `true` for the catalog agent file and for a Markdown guide mirror;
|
|
2420
|
+
* `false` otherwise.
|
|
2421
|
+
*
|
|
2422
|
+
* @remarks
|
|
2423
|
+
* The materializer keeps these paths presence-owned because the catalog or
|
|
2424
|
+
* mirror surface writes their bytes. A live host fill therefore keeps the
|
|
2425
|
+
* installed floor's bytes for them and requests only the host-owned paths.
|
|
2426
|
+
*
|
|
2427
|
+
* @example
|
|
2428
|
+
* ```ts
|
|
2429
|
+
* import { isDeferredPath } from '@orkestrel/scaffold'
|
|
2430
|
+
*
|
|
2431
|
+
* isDeferredPath('guides/router.md') // true
|
|
2432
|
+
* isDeferredPath('AGENTS.md') // false
|
|
2433
|
+
* ```
|
|
2434
|
+
*/
|
|
2435
|
+
function isDeferredPath(path) {
|
|
2436
|
+
return path === ".claude/agents/orkestrel.md" || path.startsWith("guides/") && path.endsWith(".md");
|
|
2437
|
+
}
|
|
2438
|
+
/**
|
|
2413
2439
|
* Infer the {@link Group} a path belongs to.
|
|
2414
2440
|
*
|
|
2415
2441
|
* @param path - The target-relative path to classify.
|
|
@@ -5234,6 +5260,6 @@ var Compiler = class {
|
|
|
5234
5260
|
}
|
|
5235
5261
|
};
|
|
5236
5262
|
//#endregion
|
|
5237
|
-
export { APP_BROWSER_DEV_DEPENDENCIES, APP_DEV_DEPENDENCIES, APP_MATRIX, APP_SERVER_DEV_DEPENDENCIES, ARTIFACT_TEMPLATES, BASE_DEV_DEPENDENCIES, BIN_CONFIGS, BIN_ENTRY_PATH, CATALOG_AGENT_PATH, CONFIG_TEMPLATES, CONFORMANCE_TEST_PATH, CONTROL_CHARACTER_PATTERN, Compiler, DECLARATION_DEV_DEPENDENCIES, DEFAULT_ENGINES, DEFAULT_VERSION, DEPENDENCY_NAME_PATTERN, DISTRIBUTION_TEST_PATH, ENGINES_PATTERN, ENVIRONMENTS, EXECUTABLE_PATHS, EXTRA_RANGE_PATTERN, FLOOR_RANGE_PATTERN, FOREIGN_NAME_PATTERN, GLOBAL_SETUP_PATH, GROUPS, GUIDES_TEST_PATH, HEX_PATTERN, HOST_PATHS, INTEGRATION_TEST_PATH, INVALID_PATH_CHARACTER_PATTERN, MAX_ARTIFACT_BYTES, MAX_ARTIFACT_HEX_LENGTH, MAX_AUDIT_FINDINGS, MAX_COLLECTION_ITEMS, MAX_DEPENDENCY_NAME_LENGTH, MAX_MANIFEST_BYTES, MAX_NAME_LENGTH, MAX_PATH_LENGTH, MAX_RANGE_LENGTH, MAX_REGISTRY_BYTES, MAX_TOTAL_ARTIFACT_BYTES, MAX_TOTAL_REGISTRY_BYTES, MINIMUM_NODE_VERSION, NAME_PATTERN, ORCHESTRATION_PATH_NAMES, ORCHESTRATION_PATH_PREFIXES, ORKESTREL_RANGE_PATTERN, PRINT_WIDTH, SERVICE_SCRIPT_PATH, SERVICE_SETUP_PATH, SERVICE_TEST_INCLUDE, SHOWCASE_CONFIG_PATH, SHOWCASE_DEV_DEPENDENCIES, SOURCE_BROWSER_DEV_DEPENDENCIES, SRC_MATRIX, ScaffoldError, TAB_WIDTH, VERSION_PATTERN, WORKSPACE_OWNED_PATHS, applyOverrides, artifactToFinding, artifactToHex, artifactsToQuestions, blueprintToConfigArtifacts, blueprintToDevDependencies, blueprintToDocumentArtifacts, blueprintToGuideArtifacts, blueprintToMachinery, blueprintToManifest, blueprintToOrchestrationArtifacts, blueprintToQuestions, blueprintToRootTsconfig, blueprintToRootVite, blueprintToScripts, blueprintToSourceArtifacts, blueprintToTestArtifacts, bytesToHex, catalogToLayers, cloneValue, compareVersions, computeBytes, computeHash, contentToHex, createBlueprint, dependenciesToQuestions, extractRangeMajor, extractVersion, inferDrift, inferGroup, isArtifact, isAudit, isBlueprint, isCatalogEntry, isCollection, isCompilerHooks, isCompilerOptions, isContent, isDependency, isDependencyName, isEnvironment, isFinding, isGroup, isGroups, isHex, isMirror, isOverride, isPath, isPlan, isQuestion, isScaffoldError, isSnapshot, manifestToDependencies, manifestToName, matchesDriftReachability, matchesEngines, matchesOrchestrationPath, matchesPrintWidth, matchesRange, nameToGuide, nameToHostArtifacts, nameToRewrite, overridesToQuestions, parseBlueprint, parseCompilerOptions, parseGroups, parseSnapshot, pathToCondition, planToFindings, planToHash, planToSummary, replaceManifestRanges, replacePlanRanges, selectGroups, selectHostPaths, serializeTypeScriptString, srcToEntry, srcToExports, srcToRoot };
|
|
5263
|
+
export { APP_BROWSER_DEV_DEPENDENCIES, APP_DEV_DEPENDENCIES, APP_MATRIX, APP_SERVER_DEV_DEPENDENCIES, ARTIFACT_TEMPLATES, BASE_DEV_DEPENDENCIES, BIN_CONFIGS, BIN_ENTRY_PATH, CATALOG_AGENT_PATH, CONFIG_TEMPLATES, CONFORMANCE_TEST_PATH, CONTROL_CHARACTER_PATTERN, Compiler, DECLARATION_DEV_DEPENDENCIES, DEFAULT_ENGINES, DEFAULT_VERSION, DEPENDENCY_NAME_PATTERN, DISTRIBUTION_TEST_PATH, ENGINES_PATTERN, ENVIRONMENTS, EXECUTABLE_PATHS, EXTRA_RANGE_PATTERN, FLOOR_RANGE_PATTERN, FOREIGN_NAME_PATTERN, GLOBAL_SETUP_PATH, GROUPS, GUIDES_TEST_PATH, HEX_PATTERN, HOST_INVENTORY_PATH, HOST_PATHS, INTEGRATION_TEST_PATH, INVALID_PATH_CHARACTER_PATTERN, MAX_ARTIFACT_BYTES, MAX_ARTIFACT_HEX_LENGTH, MAX_AUDIT_FINDINGS, MAX_COLLECTION_ITEMS, MAX_DEPENDENCY_NAME_LENGTH, MAX_MANIFEST_BYTES, MAX_NAME_LENGTH, MAX_PATH_LENGTH, MAX_RANGE_LENGTH, MAX_REGISTRY_BYTES, MAX_TOTAL_ARTIFACT_BYTES, MAX_TOTAL_REGISTRY_BYTES, MINIMUM_NODE_VERSION, NAME_PATTERN, ORCHESTRATION_PATH_NAMES, ORCHESTRATION_PATH_PREFIXES, ORKESTREL_RANGE_PATTERN, PRINT_WIDTH, SERVICE_SCRIPT_PATH, SERVICE_SETUP_PATH, SERVICE_TEST_INCLUDE, SHOWCASE_CONFIG_PATH, SHOWCASE_DEV_DEPENDENCIES, SOURCE_BROWSER_DEV_DEPENDENCIES, SRC_MATRIX, ScaffoldError, TAB_WIDTH, VERSION_PATTERN, WORKSPACE_OWNED_PATHS, applyOverrides, artifactToFinding, artifactToHex, artifactsToQuestions, blueprintToConfigArtifacts, blueprintToDevDependencies, blueprintToDocumentArtifacts, blueprintToGuideArtifacts, blueprintToMachinery, blueprintToManifest, blueprintToOrchestrationArtifacts, blueprintToQuestions, blueprintToRootTsconfig, blueprintToRootVite, blueprintToScripts, blueprintToSourceArtifacts, blueprintToTestArtifacts, bytesToHex, catalogToLayers, cloneValue, compareVersions, computeBytes, computeHash, contentToHex, createBlueprint, dependenciesToQuestions, extractRangeMajor, extractVersion, inferDrift, inferGroup, isArtifact, isAudit, isBlueprint, isCatalogEntry, isCollection, isCompilerHooks, isCompilerOptions, isContent, isDeferredPath, isDependency, isDependencyName, isEnvironment, isFinding, isGroup, isGroups, isHex, isMirror, isOverride, isPath, isPlan, isQuestion, isScaffoldError, isSnapshot, manifestToDependencies, manifestToName, matchesDriftReachability, matchesEngines, matchesOrchestrationPath, matchesPrintWidth, matchesRange, nameToGuide, nameToHostArtifacts, nameToRewrite, overridesToQuestions, parseBlueprint, parseCompilerOptions, parseGroups, parseSnapshot, pathToCondition, planToFindings, planToHash, planToSummary, replaceManifestRanges, replacePlanRanges, selectGroups, selectHostPaths, serializeTypeScriptString, srcToEntry, srcToExports, srcToRoot };
|
|
5238
5264
|
|
|
5239
5265
|
//# sourceMappingURL=index.js.map
|