kici 0.1.12 → 0.1.14

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.
Files changed (3) hide show
  1. package/bin/kici.js +3 -13
  2. package/package.json +3 -3
  3. package/sbom.spdx.json +1335 -8443
package/bin/kici.js CHANGED
@@ -1,15 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Register the shared oxc-transform ESM loader hook so workflow .ts files are
3
- // transformed on the fly. This gives full TypeScript coverage (enums, parameter
4
- // properties, namespaces, etc.) without relying on Node's experimental
5
- // --experimental-transform-types flag. The hook's resolve() half also rewrites
6
- // `./foo.js` specifiers to `./foo.ts` when only the .ts sibling exists, matching
7
- // the TypeScript-ESM convention `allowImportingTsExtensions`.
8
- //
9
- // Source of truth for the hook: packages/shared/src/ts-loader-hook.ts — same
10
- // module is registered by the agent's sandbox process so CLI-local behavior
11
- // matches agent-side execution.
12
- import { register } from 'node:module';
13
-
14
- register('@kici-dev/shared/ts-loader-hook', import.meta.url);
2
+ // The TypeScript ESM loader hook is registered lazily by the compiler at the
3
+ // points that load workflow .ts (compile / run local / test / fixtures), so
4
+ // commands that never touch user .ts (login, status, org, …) pay no hook tax.
15
5
  await import('@kici-dev/compiler/cli');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kici",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Developer CLI for the KiCI CI/CD stack. Compile workflows, run them locally, and interact with a remote orchestrator from the command line.",
5
5
  "keywords": [
6
6
  "kici",
@@ -30,8 +30,8 @@
30
30
  "access": "public"
31
31
  },
32
32
  "dependencies": {
33
- "@kici-dev/compiler": "0.1.12",
34
- "@kici-dev/shared": "0.1.12"
33
+ "@kici-dev/compiler": "0.1.14",
34
+ "@kici-dev/core": "0.1.14"
35
35
  },
36
36
  "files": [
37
37
  "bin",