@akanjs/cli 2.1.0-rc.3 → 2.1.0-rc.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/index.js +14 -2
- package/package.json +3 -1
package/index.js
CHANGED
|
@@ -10159,11 +10159,15 @@ class PackageRunner extends runner("package") {
|
|
|
10159
10159
|
await pkg.dist.mkdir(pkg.dist.cwdPath);
|
|
10160
10160
|
const scanner = await TypeScriptDependencyScanner.from(pkg);
|
|
10161
10161
|
const { npmDeps, npmDevDeps, missingDeps } = await scanner.getPackageBuildDependencies(pkg.name);
|
|
10162
|
-
const packageRuntimeDependencies = {};
|
|
10162
|
+
const packageRuntimeDependencies = { "@akanjs/devkit": ["daisyui", "tailwind-scrollbar"] };
|
|
10163
10163
|
const packageRuntimeDevDependencies = { akanjs: ["@biomejs/biome", "@types/bun"] };
|
|
10164
10164
|
if (pkg.name === "@akanjs/cli") {
|
|
10165
10165
|
const devkitPackageJson = await pkg.workspace.readJson("pkgs/@akanjs/devkit/package.json");
|
|
10166
|
-
packageRuntimeDependencies[pkg.name] =
|
|
10166
|
+
packageRuntimeDependencies[pkg.name] = [
|
|
10167
|
+
...Object.keys(devkitPackageJson.dependencies ?? {}),
|
|
10168
|
+
"daisyui",
|
|
10169
|
+
"tailwind-scrollbar"
|
|
10170
|
+
].filter((dep) => dep !== "akanjs" && dep !== "@akanjs/devkit");
|
|
10167
10171
|
}
|
|
10168
10172
|
const bundledRuntimeDeps = new Set(pkg.name === "@akanjs/cli" ? ["@akanjs/devkit"] : []);
|
|
10169
10173
|
const forcedRuntimeDeps = packageRuntimeDependencies[pkg.name] ?? [];
|
|
@@ -11591,11 +11595,19 @@ import { Logger as Logger17 } from "akanjs/common";
|
|
|
11591
11595
|
// pkgs/@akanjs/cli/workspace/workspace.runner.ts
|
|
11592
11596
|
import path38 from "path";
|
|
11593
11597
|
var defaultWorkspacePeerDependencies = new Set([
|
|
11598
|
+
"@radix-ui/react-dialog",
|
|
11599
|
+
"@react-spring/web",
|
|
11600
|
+
"@use-gesture/react",
|
|
11601
|
+
"croner",
|
|
11602
|
+
"daisyui",
|
|
11594
11603
|
"react",
|
|
11595
11604
|
"react-dom",
|
|
11605
|
+
"react-icons",
|
|
11596
11606
|
"react-refresh",
|
|
11597
11607
|
"react-server-dom-webpack",
|
|
11608
|
+
"react-spring",
|
|
11598
11609
|
"scheduler",
|
|
11610
|
+
"tailwind-scrollbar",
|
|
11599
11611
|
"tailwindcss",
|
|
11600
11612
|
"typescript"
|
|
11601
11613
|
]);
|
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.4",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"akanjs": "2.1.0-rc.3",
|
|
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
|
},
|