@sleepy-hollow/framework 0.3.3 → 0.3.5
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/CHANGELOG.md +21 -0
- package/dist/{chunk-4PPSJ2LE.js → chunk-2GNHTFCZ.js} +4 -4
- package/dist/{chunk-LZ2HLHDW.js → chunk-AADQFGT4.js} +3 -3
- package/dist/chunk-EHBEUJIZ.js +139 -0
- package/dist/chunk-EHBEUJIZ.js.map +1 -0
- package/dist/{chunk-S3Z6CO7J.js → chunk-LPPASMRR.js} +2 -2
- package/dist/chunk-LPPASMRR.js.map +1 -0
- package/dist/{chunk-JRFHLLLF.js → chunk-QY3TSXM6.js} +2 -2
- package/dist/{chunk-M4D63YC7.js → chunk-YBEJCNGD.js} +17 -3
- package/dist/chunk-YBEJCNGD.js.map +1 -0
- package/dist/cli.d.ts +4 -2
- package/dist/cli.js +410 -56
- package/dist/cli.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/routing.js +2 -2
- package/dist/security.js +4 -4
- package/dist/server.d.ts +15 -6
- package/dist/server.js +1 -1
- package/dist/testing.d.ts +13 -3
- package/dist/testing.js +7 -5
- package/dist/{types-Bet36nZS.d.ts → types-t92f8Gqs.d.ts} +1 -1
- package/dist/validation.js +3 -3
- package/package.json +1 -1
- package/dist/chunk-LNJDFJGT.js +0 -47
- package/dist/chunk-LNJDFJGT.js.map +0 -1
- package/dist/chunk-M4D63YC7.js.map +0 -1
- package/dist/chunk-S3Z6CO7J.js.map +0 -1
- /package/dist/{chunk-4PPSJ2LE.js.map → chunk-2GNHTFCZ.js.map} +0 -0
- /package/dist/{chunk-LZ2HLHDW.js.map → chunk-AADQFGT4.js.map} +0 -0
- /package/dist/{chunk-JRFHLLLF.js.map → chunk-QY3TSXM6.js.map} +0 -0
package/dist/cli.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { R as RequirementEvidence, k as RequirementDependency,
|
|
2
|
+
import { R as RequirementEvidence, k as RequirementDependency, g as TestManifest, h as TestExecutionResult } from './types-t92f8Gqs.js';
|
|
3
3
|
import './types-BC7LJJ6G.js';
|
|
4
4
|
import './types-BUXw3UwN.js';
|
|
5
5
|
import 'drizzle-orm/better-sqlite3';
|
|
@@ -168,6 +168,8 @@ interface TestIsolationPolicy {
|
|
|
168
168
|
}
|
|
169
169
|
interface TestCommandInventory {
|
|
170
170
|
readonly captureArtifactPath?: string;
|
|
171
|
+
readonly manifestPath?: string;
|
|
172
|
+
readonly resultsPath?: string;
|
|
171
173
|
readonly projectRootDisplay: string;
|
|
172
174
|
readonly requirements: readonly RequirementEvidence[];
|
|
173
175
|
readonly dependencyGraph: readonly RequirementDependency[];
|
|
@@ -307,7 +309,7 @@ interface CliDependencies {
|
|
|
307
309
|
*/
|
|
308
310
|
|
|
309
311
|
/** Version of the CLI, reported by `hollow --version`. */
|
|
310
|
-
declare const VERSION = "0.3.
|
|
312
|
+
declare const VERSION = "0.3.5";
|
|
311
313
|
/**
|
|
312
314
|
* Runs one CLI invocation against caller-supplied I/O.
|
|
313
315
|
*
|