@akanjs/cli 2.3.5-rc.9 → 2.3.6-rc.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/cli",
3
- "version": "2.3.5-rc.9",
3
+ "version": "2.3.6-rc.0",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -23,7 +23,6 @@
23
23
  "exports": {
24
24
  ".": {
25
25
  "import": "./index.js",
26
- "types": "./index.ts",
27
26
  "default": "./index.js"
28
27
  },
29
28
  "./package.json": "./package.json"
@@ -35,7 +34,7 @@
35
34
  "@langchain/openai": "^1.4.6",
36
35
  "@tailwindcss/node": "^4.3.0",
37
36
  "@trapezedev/project": "^7.1.4",
38
- "akanjs": "2.3.5-rc.9",
37
+ "akanjs": "2.3.6-rc.0",
39
38
  "chalk": "^5.6.2",
40
39
  "commander": "^14.0.3",
41
40
  "daisyui": "^5.5.20",
@@ -57,7 +57,7 @@ ${serviceModules.map((module) => `export const ${module} = SignalRegistry.regist
57
57
 
58
58
  export const fetchSignals = [${signalNames.join(", ")}] as const;
59
59
  export type Fetch = FetchClientType<typeof fetchSignals>;
60
- export const fetch: Fetch = FetchClient.from(...fetchSignals);
60
+ export const fetch = FetchClient.from(...fetchSignals) as unknown as Fetch;
61
61
 
62
62
  export const getSerializedSignal = () => fetch.serializedSignal
63
63
  `;
@@ -4,7 +4,13 @@
4
4
  "features": {
5
5
  "ghcr.io/devcontainers-extra/features/bun:1": {}
6
6
  },
7
- "onCreateCommand": "bun add -g @akanjs/cli@latest",
7
+ "containerEnv": {
8
+ "BUN_INSTALL": "/home/vscode/.bun"
9
+ },
10
+ "remoteEnv": {
11
+ "PATH": "/home/vscode/.bun/bin:${containerEnv:PATH}"
12
+ },
13
+ "onCreateCommand": "export PATH=\"/home/vscode/.bun/bin:$PATH\" && bun add -g @akanjs/cli@latest",
8
14
  "postCreateCommand": "bun install",
9
15
  "forwardPorts": [8282, 8283, 8284, 8285, 8286, 8287, 8288, 8289, 8290],
10
16
  "portsAttributes": {