@akanjs/cli 0.0.55 → 0.0.56
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 +8 -6
- package/package.json +1 -7
package/index.js
CHANGED
|
@@ -3869,12 +3869,14 @@ var PackageRunner = class {
|
|
|
3869
3869
|
main: "./index.js",
|
|
3870
3870
|
engines: { node: ">=22" },
|
|
3871
3871
|
dependencies,
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3872
|
+
...["@akanjs/config", "@akanjs/cli"].includes(pkg.name) ? {} : {
|
|
3873
|
+
exports: {
|
|
3874
|
+
".": {
|
|
3875
|
+
require: pkgJson.type === "module" ? "./index.cjs" : "./index.js",
|
|
3876
|
+
import: pkgJson.type === "module" ? "./index.js" : "./index.mjs"
|
|
3877
|
+
},
|
|
3878
|
+
...pkgJson.exports ?? {}
|
|
3879
|
+
}
|
|
3878
3880
|
}
|
|
3879
3881
|
};
|
|
3880
3882
|
if (buildResult.outputFiles)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "commonjs",
|
|
3
3
|
"name": "@akanjs/cli",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.56",
|
|
5
5
|
"bin": {
|
|
6
6
|
"akan": "index.js"
|
|
7
7
|
},
|
|
@@ -48,11 +48,5 @@
|
|
|
48
48
|
"vite": "^6.3.4",
|
|
49
49
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
50
50
|
"vite-tsconfig-paths": "^5.1.4"
|
|
51
|
-
},
|
|
52
|
-
"exports": {
|
|
53
|
-
".": {
|
|
54
|
-
"require": "./index.js",
|
|
55
|
-
"import": "./index.mjs"
|
|
56
|
-
}
|
|
57
51
|
}
|
|
58
52
|
}
|