limina 0.0.3 → 0.0.4
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 +13 -10
- package/chunks/{dep-UWxsul2A.js → dep-ZRIm_-Zk.js} +2 -1
- package/cli.js +1691 -1481
- package/config.d.ts +14 -16
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
package/config.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ type PipelineStep = string | {
|
|
|
55
55
|
/**
|
|
56
56
|
* Built-in task names understood by Limina pipelines.
|
|
57
57
|
*/
|
|
58
|
-
type BuiltinTaskName = "checker:build" | "checker:typecheck" | "graph:check" | "package:check" | "proof:check" | "source:check";
|
|
58
|
+
type BuiltinTaskName = "checker:build" | "checker:typecheck" | "graph:check" | "package:check" | "proof:check" | "release:check" | "source:check";
|
|
59
59
|
type BuiltinCheckerPreset = "svelte-check" | "tsc" | "vue-tsc";
|
|
60
60
|
type CheckerPreset = BuiltinCheckerPreset;
|
|
61
61
|
type CheckerExecutionKind = "build" | "typecheck";
|
|
@@ -295,15 +295,19 @@ interface PackageBoundaryCheckConfig {
|
|
|
295
295
|
ignoredExternalPackages?: string[];
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
|
-
* One published package output
|
|
298
|
+
* One published package output entry.
|
|
299
299
|
*/
|
|
300
|
-
interface
|
|
300
|
+
interface PackageEntry {
|
|
301
|
+
/**
|
|
302
|
+
* Package name used by CLI filters, reports, and cwd release matching.
|
|
303
|
+
*/
|
|
304
|
+
name: string;
|
|
301
305
|
/**
|
|
302
306
|
* Built package directory to scan, relative to the inferred workspace root.
|
|
303
307
|
*/
|
|
304
308
|
outDir: string;
|
|
305
309
|
/**
|
|
306
|
-
* Package check tools enabled for this
|
|
310
|
+
* Package check tools enabled for this entry.
|
|
307
311
|
*
|
|
308
312
|
* @default ["publint", "attw", "boundary"]
|
|
309
313
|
*/
|
|
@@ -320,21 +324,15 @@ interface PackageCheckTarget {
|
|
|
320
324
|
* Built package import boundary settings.
|
|
321
325
|
*/
|
|
322
326
|
boundary?: PackageBoundaryCheckConfig;
|
|
323
|
-
/**
|
|
324
|
-
* Friendly target name used by CLI filters and reports.
|
|
325
|
-
*
|
|
326
|
-
* Defaults to the `outDir` path.
|
|
327
|
-
*/
|
|
328
|
-
name?: string;
|
|
329
327
|
}
|
|
330
328
|
/**
|
|
331
|
-
* Published package
|
|
329
|
+
* Published package settings.
|
|
332
330
|
*/
|
|
333
|
-
interface
|
|
331
|
+
interface PackageConfig {
|
|
334
332
|
/**
|
|
335
333
|
* Built package outputs to check.
|
|
336
334
|
*/
|
|
337
|
-
|
|
335
|
+
entries?: PackageEntry[];
|
|
338
336
|
}
|
|
339
337
|
/**
|
|
340
338
|
* Limina user config.
|
|
@@ -351,7 +349,7 @@ interface LiminaConfig {
|
|
|
351
349
|
/**
|
|
352
350
|
* Rules for checking built package outputs before publishing.
|
|
353
351
|
*/
|
|
354
|
-
|
|
352
|
+
package?: PackageConfig;
|
|
355
353
|
/**
|
|
356
354
|
* Options for generating TypeScript source `paths` compatibility files.
|
|
357
355
|
*/
|
|
@@ -368,7 +366,7 @@ interface LiminaConfig {
|
|
|
368
366
|
/**
|
|
369
367
|
* CLI command currently loading the config.
|
|
370
368
|
*/
|
|
371
|
-
type LiminaCommand = "check" | "graph" | "package" | "paths" | "proof" | "source" | (string & {});
|
|
369
|
+
type LiminaCommand = "check" | "graph" | "package" | "paths" | "proof" | "release" | "source" | (string & {});
|
|
372
370
|
/**
|
|
373
371
|
* Environment passed to function-style configs.
|
|
374
372
|
*/
|
|
@@ -440,4 +438,4 @@ interface LoadConfigOptions {
|
|
|
440
438
|
}
|
|
441
439
|
declare function loadConfig(options?: LoadConfigOptions): Promise<ResolvedLiminaConfig>;
|
|
442
440
|
//#endregion
|
|
443
|
-
export { BuiltinCheckerPreset, BuiltinTaskName, CheckerConfig, CheckerExecutionKind, CheckerPreset, GraphConfig, GraphRule, GraphRuleDenyConfig, GraphRuleDepDenyEntry, GraphRuleRefDenyEntry, LiminaCommand, LiminaConfig, LiminaConfigEnv, LiminaConfigExport, LiminaConfigFn, LiminaConfigFnObject, LiminaConfigFnPromise, LoadConfigOptions, PackageAttwCheckConfig, PackageAttwProfile, PackageBoundaryCheckConfig,
|
|
441
|
+
export { BuiltinCheckerPreset, BuiltinTaskName, CheckerConfig, CheckerExecutionKind, CheckerPreset, GraphConfig, GraphRule, GraphRuleDenyConfig, GraphRuleDepDenyEntry, GraphRuleRefDenyEntry, LiminaCommand, LiminaConfig, LiminaConfigEnv, LiminaConfigExport, LiminaConfigFn, LiminaConfigFnObject, LiminaConfigFnPromise, LoadConfigOptions, PackageAttwCheckConfig, PackageAttwProfile, PackageBoundaryCheckConfig, PackageCheckTool, PackageCheckToolSelection, PackageConfig, PackageEntry, PackagePublintCheckConfig, PathsConfig, PipelineStep, ProofAllowlistEntry, ProofConfig, ResolvedCheckerConfig, ResolvedLiminaConfig, RuntimeEnvironment, SharedLiminaConfig, SourceBoundaryConfig, defineConfig, getActiveCheckerExtensions, getActiveCheckers, loadConfig, validateLiminaConfig };
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BuiltinCheckerPreset, BuiltinTaskName, CheckerConfig, CheckerExecutionKind, CheckerPreset, GraphConfig, GraphRule, GraphRuleDenyConfig, GraphRuleDepDenyEntry, GraphRuleRefDenyEntry, LiminaCommand, LiminaConfig, LiminaConfigEnv, LiminaConfigExport, LiminaConfigFn, LiminaConfigFnObject, LiminaConfigFnPromise, LoadConfigOptions, PackageAttwCheckConfig, PackageAttwProfile, PackageBoundaryCheckConfig,
|
|
1
|
+
import { BuiltinCheckerPreset, BuiltinTaskName, CheckerConfig, CheckerExecutionKind, CheckerPreset, GraphConfig, GraphRule, GraphRuleDenyConfig, GraphRuleDepDenyEntry, GraphRuleRefDenyEntry, LiminaCommand, LiminaConfig, LiminaConfigEnv, LiminaConfigExport, LiminaConfigFn, LiminaConfigFnObject, LiminaConfigFnPromise, LoadConfigOptions, PackageAttwCheckConfig, PackageAttwProfile, PackageBoundaryCheckConfig, PackageCheckTool, PackageCheckToolSelection, PackageConfig, PackageEntry, PackagePublintCheckConfig, PathsConfig, PipelineStep, ProofAllowlistEntry, ProofConfig, ResolvedCheckerConfig, ResolvedLiminaConfig, RuntimeEnvironment, SharedLiminaConfig, SourceBoundaryConfig, defineConfig, getActiveCheckerExtensions, getActiveCheckers, loadConfig, validateLiminaConfig } from "./config.js";
|
|
2
2
|
//#region src/flow.d.ts
|
|
3
3
|
interface ClackLogAdapter {
|
|
4
4
|
error: (message: string) => void;
|
|
@@ -146,4 +146,4 @@ declare function runCheckerTypecheck(options: RunCheckerTypecheckOptions): Promi
|
|
|
146
146
|
//#region src/tsconfig.d.ts
|
|
147
147
|
declare function isOrdinaryTypecheckConfigPath(configPath: string): boolean;
|
|
148
148
|
//#endregion
|
|
149
|
-
export { type BuiltinCheckerPreset, type BuiltinTaskName, type CheckerConfig, type CheckerExecutionKind, type CheckerPreset, type GraphConfig, type GraphRule, type GraphRuleDenyConfig, type GraphRuleDepDenyEntry, type GraphRuleRefDenyEntry, type LiminaCommand, type LiminaConfig, type LiminaConfigEnv, type LiminaConfigExport, type LiminaConfigFn, type LiminaConfigFnObject, type LiminaConfigFnPromise, type LiminaFlowFailureOptions, type LiminaFlowMessageOptions, type LiminaFlowOutputOptions, LiminaFlowReporter, type LiminaFlowReporterOptions, type LiminaFlowTask, type LoadConfigOptions, type PackageAttwCheckConfig, type PackageAttwProfile, type PackageBoundaryCheckConfig, type
|
|
149
|
+
export { type BuiltinCheckerPreset, type BuiltinTaskName, type CheckerConfig, type CheckerExecutionKind, type CheckerPreset, type GraphConfig, type GraphRule, type GraphRuleDenyConfig, type GraphRuleDepDenyEntry, type GraphRuleRefDenyEntry, type LiminaCommand, type LiminaConfig, type LiminaConfigEnv, type LiminaConfigExport, type LiminaConfigFn, type LiminaConfigFnObject, type LiminaConfigFnPromise, type LiminaFlowFailureOptions, type LiminaFlowMessageOptions, type LiminaFlowOutputOptions, LiminaFlowReporter, type LiminaFlowReporterOptions, type LiminaFlowTask, type LoadConfigOptions, type PackageAttwCheckConfig, type PackageAttwProfile, type PackageBoundaryCheckConfig, type PackageCheckTool, type PackageCheckToolSelection, type PackageConfig, type PackageEntry, type PackagePublintCheckConfig, type PathsConfig, type PipelineStep, type ProofAllowlistEntry, type ProofConfig, type ResolvedCheckerConfig, type ResolvedLiminaConfig, type RunCheckerBuildOptions, type RunCheckerBuildResult, type RunCheckerTypecheckOptions, type RunCheckerTypecheckResult, type RunInitOptions, type RunInitResult, type RunSourceCheckOptions, type RuntimeEnvironment, type SharedLiminaConfig, type SourceBoundaryConfig, type TypecheckRunner, type TypecheckTarget, type TypecheckTargetResult, createLiminaFlowReporter, defineConfig, getActiveCheckerExtensions, getActiveCheckers, isOrdinaryTypecheckConfigPath, loadConfig, runCheckerBuild, runCheckerTypecheck, runInit, runSourceCheck, validateLiminaConfig };
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "./chunks/dep-lkQg1P9Q.js";
|
|
2
2
|
import { a as validateLiminaConfig, i as loadConfig, n as getActiveCheckerExtensions, r as getActiveCheckers, t as defineConfig } from "./chunks/dep-DzYrmtQJ.js";
|
|
3
|
-
import {
|
|
3
|
+
import { Y as isOrdinaryTypecheckConfigPath, a as runSourceCheck, i as runCheckerTypecheck, n as createLiminaFlowReporter, o as runInit, r as runCheckerBuild, t as LiminaFlowReporter } from "./chunks/dep-ZRIm_-Zk.js";
|
|
4
4
|
|
|
5
5
|
export { LiminaFlowReporter, createLiminaFlowReporter, defineConfig, getActiveCheckerExtensions, getActiveCheckers, isOrdinaryTypecheckConfigPath, loadConfig, runCheckerBuild, runCheckerTypecheck, runInit, runSourceCheck, validateLiminaConfig };
|