@akanjs/cli 2.1.0-rc.3 → 2.1.0-rc.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/incrementalBuilder.proc.js +1 -3
- package/index.js +15 -5
- package/package.json +4 -2
|
@@ -5420,9 +5420,7 @@ ${defaultNames.map((name) => `export default ${name};`).join(`
|
|
|
5420
5420
|
}
|
|
5421
5421
|
static resolveSsrClientRuntimeAliases() {
|
|
5422
5422
|
const serverEntry = RouteClientBuilder.resolveAkanServerEntry();
|
|
5423
|
-
|
|
5424
|
-
aliases[Bun.resolveSync("akanjs/fetch", serverEntry)] = "akanjs/fetch";
|
|
5425
|
-
return aliases;
|
|
5423
|
+
return { [Bun.resolveSync("akanjs/fetch", serverEntry)]: "akanjs/fetch" };
|
|
5426
5424
|
}
|
|
5427
5425
|
static resolveSsrClientExternalOptions(command) {
|
|
5428
5426
|
if (command === "start") {
|
package/index.js
CHANGED
|
@@ -5417,9 +5417,7 @@ ${defaultNames.map((name) => `export default ${name};`).join(`
|
|
|
5417
5417
|
}
|
|
5418
5418
|
static resolveSsrClientRuntimeAliases() {
|
|
5419
5419
|
const serverEntry = RouteClientBuilder.resolveAkanServerEntry();
|
|
5420
|
-
|
|
5421
|
-
aliases[Bun.resolveSync("akanjs/fetch", serverEntry)] = "akanjs/fetch";
|
|
5422
|
-
return aliases;
|
|
5420
|
+
return { [Bun.resolveSync("akanjs/fetch", serverEntry)]: "akanjs/fetch" };
|
|
5423
5421
|
}
|
|
5424
5422
|
static resolveSsrClientExternalOptions(command) {
|
|
5425
5423
|
if (command === "start") {
|
|
@@ -10159,11 +10157,15 @@ class PackageRunner extends runner("package") {
|
|
|
10159
10157
|
await pkg.dist.mkdir(pkg.dist.cwdPath);
|
|
10160
10158
|
const scanner = await TypeScriptDependencyScanner.from(pkg);
|
|
10161
10159
|
const { npmDeps, npmDevDeps, missingDeps } = await scanner.getPackageBuildDependencies(pkg.name);
|
|
10162
|
-
const packageRuntimeDependencies = {};
|
|
10160
|
+
const packageRuntimeDependencies = { "@akanjs/devkit": ["daisyui", "tailwind-scrollbar"] };
|
|
10163
10161
|
const packageRuntimeDevDependencies = { akanjs: ["@biomejs/biome", "@types/bun"] };
|
|
10164
10162
|
if (pkg.name === "@akanjs/cli") {
|
|
10165
10163
|
const devkitPackageJson = await pkg.workspace.readJson("pkgs/@akanjs/devkit/package.json");
|
|
10166
|
-
packageRuntimeDependencies[pkg.name] =
|
|
10164
|
+
packageRuntimeDependencies[pkg.name] = [
|
|
10165
|
+
...Object.keys(devkitPackageJson.dependencies ?? {}),
|
|
10166
|
+
"daisyui",
|
|
10167
|
+
"tailwind-scrollbar"
|
|
10168
|
+
].filter((dep) => dep !== "akanjs" && dep !== "@akanjs/devkit");
|
|
10167
10169
|
}
|
|
10168
10170
|
const bundledRuntimeDeps = new Set(pkg.name === "@akanjs/cli" ? ["@akanjs/devkit"] : []);
|
|
10169
10171
|
const forcedRuntimeDeps = packageRuntimeDependencies[pkg.name] ?? [];
|
|
@@ -11591,11 +11593,19 @@ import { Logger as Logger17 } from "akanjs/common";
|
|
|
11591
11593
|
// pkgs/@akanjs/cli/workspace/workspace.runner.ts
|
|
11592
11594
|
import path38 from "path";
|
|
11593
11595
|
var defaultWorkspacePeerDependencies = new Set([
|
|
11596
|
+
"@radix-ui/react-dialog",
|
|
11597
|
+
"@react-spring/web",
|
|
11598
|
+
"@use-gesture/react",
|
|
11599
|
+
"croner",
|
|
11600
|
+
"daisyui",
|
|
11594
11601
|
"react",
|
|
11595
11602
|
"react-dom",
|
|
11603
|
+
"react-icons",
|
|
11596
11604
|
"react-refresh",
|
|
11597
11605
|
"react-server-dom-webpack",
|
|
11606
|
+
"react-spring",
|
|
11598
11607
|
"scheduler",
|
|
11608
|
+
"tailwind-scrollbar",
|
|
11599
11609
|
"tailwindcss",
|
|
11600
11610
|
"typescript"
|
|
11601
11611
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/cli",
|
|
3
|
-
"version": "2.1.0-rc.
|
|
3
|
+
"version": "2.1.0-rc.5",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,9 +34,10 @@
|
|
|
34
34
|
"@langchain/deepseek": "^1.0.26",
|
|
35
35
|
"@langchain/openai": "^1.4.6",
|
|
36
36
|
"@trapezedev/project": "^7.1.4",
|
|
37
|
-
"akanjs": "2.1.0-rc.
|
|
37
|
+
"akanjs": "2.1.0-rc.5",
|
|
38
38
|
"chalk": "^5.6.2",
|
|
39
39
|
"commander": "^14.0.3",
|
|
40
|
+
"daisyui": "^5.5.20",
|
|
40
41
|
"fontaine": "^0.8.0",
|
|
41
42
|
"fonteditor-core": "^2.6.3",
|
|
42
43
|
"ignore": "^7.0.5",
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
"react": "19.2.6",
|
|
48
49
|
"ssh2": "^1.17.0",
|
|
49
50
|
"subset-font": "^2.5.0",
|
|
51
|
+
"tailwind-scrollbar": "^4.0.2",
|
|
50
52
|
"tailwindcss": "^4.3.0",
|
|
51
53
|
"typescript": "^6.0.3"
|
|
52
54
|
},
|