@orkestrel/scaffold 0.0.41 → 0.0.42
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/host/guides/scaffold.md +10 -3
- package/dist/host/scripts/codex.sh +0 -0
- package/dist/host/scripts/cursor.sh +0 -0
- package/dist/host/scripts/deps.sh +0 -0
- package/dist/host/scripts/ollama.sh +0 -0
- package/dist/host/tests/config.test.ts +27 -5
- package/dist/src/core/index.cjs +29 -16
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +34 -20
- package/dist/src/core/index.d.ts +34 -20
- package/dist/src/core/index.js +28 -16
- package/dist/src/core/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -233,8 +233,9 @@ export declare const BIN_ENTRY_PATH = "src/bin/main.ts";
|
|
|
233
233
|
* `src` selects published library environments and `app` selects private
|
|
234
234
|
* runtime environments. The two axes are independent, so library-only,
|
|
235
235
|
* application-only, and mixed workspaces are all first class. `dependencies`
|
|
236
|
-
*
|
|
237
|
-
*
|
|
236
|
+
* are runtime `@orkestrel/*` packages. A peer in the `@orkestrel` scope is a
|
|
237
|
+
* fleet pin; every other peer is a floor. `extras` are package-specific
|
|
238
|
+
* development dependencies and may carry any valid npm name.
|
|
238
239
|
* `bin`, `setup`, `guides`, `distribution`, `integration`, `conformance`,
|
|
239
240
|
* `service`, `vendors`, `global`, and `showcase` are structural facts: each is
|
|
240
241
|
* set only when the workspace physically ships the directory or exact-case file
|
|
@@ -303,7 +304,10 @@ export declare function blueprintToConfigArtifacts(blueprint: Blueprint): readon
|
|
|
303
304
|
* each declared axis adds the set its host needs. A declared extra or peer is
|
|
304
305
|
* applied after those, so a workspace that pins a range for a package the
|
|
305
306
|
* conditional sets also name gets the range it declared. An extra that restates
|
|
306
|
-
* a shared toolchain pin never reaches here, because the gate refuses it.
|
|
307
|
+
* a shared toolchain pin never reaches here, because the gate refuses it. A peer
|
|
308
|
+
* that names a development tool already selected keeps that tool's pin, because
|
|
309
|
+
* the peer's floor states what consumers may supply rather than what this workspace
|
|
310
|
+
* develops against.
|
|
307
311
|
*
|
|
308
312
|
* A peer is declared here as well as under `peerDependencies`, because a peer is
|
|
309
313
|
* not installed by the workspace that declares it and developing against one
|
|
@@ -1200,11 +1204,11 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1200
1204
|
* range, in list order.
|
|
1201
1205
|
*
|
|
1202
1206
|
* @remarks
|
|
1203
|
-
* The
|
|
1204
|
-
* rules live here once and each caller supplies its own patterns.
|
|
1205
|
-
* dependency name reaches a path through its guide mirror and is
|
|
1206
|
-
* `@orkestrel` scope
|
|
1207
|
-
* valid npm name.
|
|
1207
|
+
* The declared lists and peer partitions differ only in the two syntaxes they
|
|
1208
|
+
* accept, so the rules live here once and each caller supplies its own patterns.
|
|
1209
|
+
* A runtime dependency name reaches a path through its guide mirror and is
|
|
1210
|
+
* fixed to the `@orkestrel` scope. A foreign peer or development extra reaches
|
|
1211
|
+
* no path and admits any valid npm name.
|
|
1208
1212
|
*
|
|
1209
1213
|
* Both patterns must be stateless. A global or sticky pattern carries a
|
|
1210
1214
|
* `lastIndex` between calls, so it would answer differently for the same input
|
|
@@ -1294,18 +1298,6 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1294
1298
|
*/
|
|
1295
1299
|
export declare const EXECUTABLE_PATHS: readonly string[];
|
|
1296
1300
|
|
|
1297
|
-
/**
|
|
1298
|
-
* The development extra name syntax: any valid npm package name.
|
|
1299
|
-
*
|
|
1300
|
-
* @remarks
|
|
1301
|
-
* Wider than a runtime dependency name on purpose. An extra is manifest content
|
|
1302
|
-
* and never reaches a path, so it may carry any scope or no scope at all. The
|
|
1303
|
-
* single optional `/` is still fixed to the one scope boundary, and neither `..`
|
|
1304
|
-
* nor a backslash is admitted, so the shape cannot express a traversal even
|
|
1305
|
-
* though it accepts far more names.
|
|
1306
|
-
*/
|
|
1307
|
-
export declare const EXTRA_NAME_PATTERN: RegExp;
|
|
1308
|
-
|
|
1309
1301
|
/** The registry-only semver subset accepted for a development extra's range. */
|
|
1310
1302
|
export declare const EXTRA_RANGE_PATTERN: RegExp;
|
|
1311
1303
|
|
|
@@ -1386,6 +1378,28 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1386
1378
|
readonly observed?: string;
|
|
1387
1379
|
};
|
|
1388
1380
|
|
|
1381
|
+
/**
|
|
1382
|
+
* The exact three-component floor accepted for a foreign peer's range.
|
|
1383
|
+
*
|
|
1384
|
+
* @remarks
|
|
1385
|
+
* This is independent from {@link ENGINES_PATTERN}. An engine floors the Node
|
|
1386
|
+
* runtime a workspace supports, while a peer floors a tool the consumer
|
|
1387
|
+
* supplies. Either obligation may change without changing the other.
|
|
1388
|
+
*/
|
|
1389
|
+
export declare const FLOOR_RANGE_PATTERN: RegExp;
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* The package name syntax for a dependency this package does not publish.
|
|
1393
|
+
*
|
|
1394
|
+
* @remarks
|
|
1395
|
+
* A foreign package is one this package does not publish, so its name reaches
|
|
1396
|
+
* no path. It may carry any scope or no scope at all. Each name segment begins
|
|
1397
|
+
* with an alphanumeric character after an optional leading `@`, and the name
|
|
1398
|
+
* carries at most one `/`. No segment can therefore be `..`, and no backslash
|
|
1399
|
+
* is admitted, so the shape cannot express a traversal.
|
|
1400
|
+
*/
|
|
1401
|
+
export declare const FOREIGN_NAME_PATTERN: RegExp;
|
|
1402
|
+
|
|
1389
1403
|
/** The shared Vitest global-setup module whose presence makes a workspace `global`. */
|
|
1390
1404
|
export declare const GLOBAL_SETUP_PATH = "tests/setupGlobal.ts";
|
|
1391
1405
|
|
package/dist/src/core/index.d.ts
CHANGED
|
@@ -233,8 +233,9 @@ export declare const BIN_ENTRY_PATH = "src/bin/main.ts";
|
|
|
233
233
|
* `src` selects published library environments and `app` selects private
|
|
234
234
|
* runtime environments. The two axes are independent, so library-only,
|
|
235
235
|
* application-only, and mixed workspaces are all first class. `dependencies`
|
|
236
|
-
*
|
|
237
|
-
*
|
|
236
|
+
* are runtime `@orkestrel/*` packages. A peer in the `@orkestrel` scope is a
|
|
237
|
+
* fleet pin; every other peer is a floor. `extras` are package-specific
|
|
238
|
+
* development dependencies and may carry any valid npm name.
|
|
238
239
|
* `bin`, `setup`, `guides`, `distribution`, `integration`, `conformance`,
|
|
239
240
|
* `service`, `vendors`, `global`, and `showcase` are structural facts: each is
|
|
240
241
|
* set only when the workspace physically ships the directory or exact-case file
|
|
@@ -303,7 +304,10 @@ export declare function blueprintToConfigArtifacts(blueprint: Blueprint): readon
|
|
|
303
304
|
* each declared axis adds the set its host needs. A declared extra or peer is
|
|
304
305
|
* applied after those, so a workspace that pins a range for a package the
|
|
305
306
|
* conditional sets also name gets the range it declared. An extra that restates
|
|
306
|
-
* a shared toolchain pin never reaches here, because the gate refuses it.
|
|
307
|
+
* a shared toolchain pin never reaches here, because the gate refuses it. A peer
|
|
308
|
+
* that names a development tool already selected keeps that tool's pin, because
|
|
309
|
+
* the peer's floor states what consumers may supply rather than what this workspace
|
|
310
|
+
* develops against.
|
|
307
311
|
*
|
|
308
312
|
* A peer is declared here as well as under `peerDependencies`, because a peer is
|
|
309
313
|
* not installed by the workspace that declares it and developing against one
|
|
@@ -1200,11 +1204,11 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1200
1204
|
* range, in list order.
|
|
1201
1205
|
*
|
|
1202
1206
|
* @remarks
|
|
1203
|
-
* The
|
|
1204
|
-
* rules live here once and each caller supplies its own patterns.
|
|
1205
|
-
* dependency name reaches a path through its guide mirror and is
|
|
1206
|
-
* `@orkestrel` scope
|
|
1207
|
-
* valid npm name.
|
|
1207
|
+
* The declared lists and peer partitions differ only in the two syntaxes they
|
|
1208
|
+
* accept, so the rules live here once and each caller supplies its own patterns.
|
|
1209
|
+
* A runtime dependency name reaches a path through its guide mirror and is
|
|
1210
|
+
* fixed to the `@orkestrel` scope. A foreign peer or development extra reaches
|
|
1211
|
+
* no path and admits any valid npm name.
|
|
1208
1212
|
*
|
|
1209
1213
|
* Both patterns must be stateless. A global or sticky pattern carries a
|
|
1210
1214
|
* `lastIndex` between calls, so it would answer differently for the same input
|
|
@@ -1294,18 +1298,6 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1294
1298
|
*/
|
|
1295
1299
|
export declare const EXECUTABLE_PATHS: readonly string[];
|
|
1296
1300
|
|
|
1297
|
-
/**
|
|
1298
|
-
* The development extra name syntax: any valid npm package name.
|
|
1299
|
-
*
|
|
1300
|
-
* @remarks
|
|
1301
|
-
* Wider than a runtime dependency name on purpose. An extra is manifest content
|
|
1302
|
-
* and never reaches a path, so it may carry any scope or no scope at all. The
|
|
1303
|
-
* single optional `/` is still fixed to the one scope boundary, and neither `..`
|
|
1304
|
-
* nor a backslash is admitted, so the shape cannot express a traversal even
|
|
1305
|
-
* though it accepts far more names.
|
|
1306
|
-
*/
|
|
1307
|
-
export declare const EXTRA_NAME_PATTERN: RegExp;
|
|
1308
|
-
|
|
1309
1301
|
/** The registry-only semver subset accepted for a development extra's range. */
|
|
1310
1302
|
export declare const EXTRA_RANGE_PATTERN: RegExp;
|
|
1311
1303
|
|
|
@@ -1386,6 +1378,28 @@ export declare class Compiler implements CompilerInterface {
|
|
|
1386
1378
|
readonly observed?: string;
|
|
1387
1379
|
};
|
|
1388
1380
|
|
|
1381
|
+
/**
|
|
1382
|
+
* The exact three-component floor accepted for a foreign peer's range.
|
|
1383
|
+
*
|
|
1384
|
+
* @remarks
|
|
1385
|
+
* This is independent from {@link ENGINES_PATTERN}. An engine floors the Node
|
|
1386
|
+
* runtime a workspace supports, while a peer floors a tool the consumer
|
|
1387
|
+
* supplies. Either obligation may change without changing the other.
|
|
1388
|
+
*/
|
|
1389
|
+
export declare const FLOOR_RANGE_PATTERN: RegExp;
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* The package name syntax for a dependency this package does not publish.
|
|
1393
|
+
*
|
|
1394
|
+
* @remarks
|
|
1395
|
+
* A foreign package is one this package does not publish, so its name reaches
|
|
1396
|
+
* no path. It may carry any scope or no scope at all. Each name segment begins
|
|
1397
|
+
* with an alphanumeric character after an optional leading `@`, and the name
|
|
1398
|
+
* carries at most one `/`. No segment can therefore be `..`, and no backslash
|
|
1399
|
+
* is admitted, so the shape cannot express a traversal.
|
|
1400
|
+
*/
|
|
1401
|
+
export declare const FOREIGN_NAME_PATTERN: RegExp;
|
|
1402
|
+
|
|
1389
1403
|
/** The shared Vitest global-setup module whose presence makes a workspace `global`. */
|
|
1390
1404
|
export declare const GLOBAL_SETUP_PATH = "tests/setupGlobal.ts";
|
|
1391
1405
|
|
package/dist/src/core/index.js
CHANGED
|
@@ -234,16 +234,16 @@ var NAME_PATTERN = /^[a-z][a-z0-9-]*$/;
|
|
|
234
234
|
*/
|
|
235
235
|
var DEPENDENCY_NAME_PATTERN = /^@orkestrel\/[a-z][a-z0-9-]*$/;
|
|
236
236
|
/**
|
|
237
|
-
* The
|
|
237
|
+
* The package name syntax for a dependency this package does not publish.
|
|
238
238
|
*
|
|
239
239
|
* @remarks
|
|
240
|
-
*
|
|
241
|
-
*
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
*
|
|
240
|
+
* A foreign package is one this package does not publish, so its name reaches
|
|
241
|
+
* no path. It may carry any scope or no scope at all. Each name segment begins
|
|
242
|
+
* with an alphanumeric character after an optional leading `@`, and the name
|
|
243
|
+
* carries at most one `/`. No segment can therefore be `..`, and no backslash
|
|
244
|
+
* is admitted, so the shape cannot express a traversal.
|
|
245
245
|
*/
|
|
246
|
-
var
|
|
246
|
+
var FOREIGN_NAME_PATTERN = /^(?:@[a-z0-9][a-z0-9._-]*\/)?[a-z0-9][a-z0-9._-]*$/;
|
|
247
247
|
/** The exact three-component version syntax a blueprint declares. */
|
|
248
248
|
var VERSION_PATTERN = /^(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
|
|
249
249
|
/**
|
|
@@ -258,6 +258,15 @@ var VERSION_PATTERN = /^(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
|
|
|
258
258
|
var ORKESTREL_RANGE_PATTERN = /^\^0\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
|
|
259
259
|
/** The registry-only semver subset accepted for a development extra's range. */
|
|
260
260
|
var EXTRA_RANGE_PATTERN = /^(?:\^|~)?(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-(?:0|[1-9]\d*|\d*[A-Za-z-][0-9A-Za-z-]*)(?:\.(?:0|[1-9]\d*|\d*[A-Za-z-][0-9A-Za-z-]*))*)?$/;
|
|
261
|
+
/**
|
|
262
|
+
* The exact three-component floor accepted for a foreign peer's range.
|
|
263
|
+
*
|
|
264
|
+
* @remarks
|
|
265
|
+
* This is independent from {@link ENGINES_PATTERN}. An engine floors the Node
|
|
266
|
+
* runtime a workspace supports, while a peer floors a tool the consumer
|
|
267
|
+
* supplies. Either obligation may change without changing the other.
|
|
268
|
+
*/
|
|
269
|
+
var FLOOR_RANGE_PATTERN = /^>=(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
|
|
261
270
|
/** The minimum-Node engine syntax a blueprint declares. */
|
|
262
271
|
var ENGINES_PATTERN = /^>=(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
|
|
263
272
|
/** Exact lowercase hexadecimal bytes: two digits per byte, and empty content is valid. */
|
|
@@ -3016,7 +3025,10 @@ function srcToExports(src) {
|
|
|
3016
3025
|
* each declared axis adds the set its host needs. A declared extra or peer is
|
|
3017
3026
|
* applied after those, so a workspace that pins a range for a package the
|
|
3018
3027
|
* conditional sets also name gets the range it declared. An extra that restates
|
|
3019
|
-
* a shared toolchain pin never reaches here, because the gate refuses it.
|
|
3028
|
+
* a shared toolchain pin never reaches here, because the gate refuses it. A peer
|
|
3029
|
+
* that names a development tool already selected keeps that tool's pin, because
|
|
3030
|
+
* the peer's floor states what consumers may supply rather than what this workspace
|
|
3031
|
+
* develops against.
|
|
3020
3032
|
*
|
|
3021
3033
|
* A peer is declared here as well as under `peerDependencies`, because a peer is
|
|
3022
3034
|
* not installed by the workspace that declares it and developing against one
|
|
@@ -3049,7 +3061,7 @@ function blueprintToDevDependencies(blueprint) {
|
|
|
3049
3061
|
...blueprint.app.includes("server") ? APP_SERVER_DEV_DEPENDENCIES : {}
|
|
3050
3062
|
};
|
|
3051
3063
|
for (const extra of blueprint.extras) merged[extra.name] = extra.range;
|
|
3052
|
-
for (const peer of blueprint.peers) merged[peer.name] = peer.range;
|
|
3064
|
+
for (const peer of blueprint.peers) if (!Object.hasOwn(merged, peer.name)) merged[peer.name] = peer.range;
|
|
3053
3065
|
const own = blueprint.src.length > 0 ? `@orkestrel/${blueprint.name}` : blueprint.name;
|
|
3054
3066
|
const runtime = new Set(blueprint.dependencies.map((dependency) => dependency.name));
|
|
3055
3067
|
return Object.fromEntries(Object.entries(merged).filter(([name]) => name !== own && !runtime.has(name)).sort(([left], [right]) => compareValues(left, right)));
|
|
@@ -4138,11 +4150,11 @@ function planToFindings(plan, current) {
|
|
|
4138
4150
|
* range, in list order.
|
|
4139
4151
|
*
|
|
4140
4152
|
* @remarks
|
|
4141
|
-
* The
|
|
4142
|
-
* rules live here once and each caller supplies its own patterns.
|
|
4143
|
-
* dependency name reaches a path through its guide mirror and is
|
|
4144
|
-
* `@orkestrel` scope
|
|
4145
|
-
* valid npm name.
|
|
4153
|
+
* The declared lists and peer partitions differ only in the two syntaxes they
|
|
4154
|
+
* accept, so the rules live here once and each caller supplies its own patterns.
|
|
4155
|
+
* A runtime dependency name reaches a path through its guide mirror and is
|
|
4156
|
+
* fixed to the `@orkestrel` scope. A foreign peer or development extra reaches
|
|
4157
|
+
* no path and admits any valid npm name.
|
|
4146
4158
|
*
|
|
4147
4159
|
* Both patterns must be stateless. A global or sticky pattern carries a
|
|
4148
4160
|
* `lastIndex` between calls, so it would answer differently for the same input
|
|
@@ -4300,7 +4312,7 @@ function blueprintToQuestions(blueprint) {
|
|
|
4300
4312
|
message: "showcase projects a browser app, and this workspace declares none, so it emits nothing.",
|
|
4301
4313
|
blocking: false
|
|
4302
4314
|
});
|
|
4303
|
-
questions.push(...dependenciesToQuestions(blueprint.dependencies, "dependencies", DEPENDENCY_NAME_PATTERN, ORKESTREL_RANGE_PATTERN), ...dependenciesToQuestions(blueprint.peers, "peers", DEPENDENCY_NAME_PATTERN, ORKESTREL_RANGE_PATTERN), ...dependenciesToQuestions(blueprint.extras, "extras",
|
|
4315
|
+
questions.push(...dependenciesToQuestions(blueprint.dependencies, "dependencies", DEPENDENCY_NAME_PATTERN, ORKESTREL_RANGE_PATTERN), ...dependenciesToQuestions(blueprint.peers.filter((peer) => peer.name.startsWith("@orkestrel/")), "peers", DEPENDENCY_NAME_PATTERN, ORKESTREL_RANGE_PATTERN), ...dependenciesToQuestions(blueprint.peers.filter((peer) => !peer.name.startsWith("@orkestrel/")), "peers", FOREIGN_NAME_PATTERN, FLOOR_RANGE_PATTERN), ...dependenciesToQuestions(blueprint.extras, "extras", FOREIGN_NAME_PATTERN, EXTRA_RANGE_PATTERN));
|
|
4304
4316
|
const lists = [
|
|
4305
4317
|
["dependencies", blueprint.dependencies],
|
|
4306
4318
|
["peers", blueprint.peers],
|
|
@@ -4835,6 +4847,6 @@ function createCompiler(options) {
|
|
|
4835
4847
|
return new Compiler(options);
|
|
4836
4848
|
}
|
|
4837
4849
|
//#endregion
|
|
4838
|
-
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,
|
|
4850
|
+
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_TOTAL_ARTIFACT_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, createCompiler, dependenciesToQuestions, 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, selectGroups, selectHostPaths, serializeTypeScriptString, srcToEntry, srcToExports, srcToRoot };
|
|
4839
4851
|
|
|
4840
4852
|
//# sourceMappingURL=index.js.map
|