@akanjs/cli 0.0.103 → 0.0.104
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
CHANGED
|
@@ -2388,6 +2388,7 @@ var import_path4 = __toESM(require("path"));
|
|
|
2388
2388
|
var vite = __toESM(require("vite"));
|
|
2389
2389
|
var import_vite_plugin_node_polyfills = require("vite-plugin-node-polyfills");
|
|
2390
2390
|
var import_vite_tsconfig_paths = __toESM(require("vite-tsconfig-paths"));
|
|
2391
|
+
var import_vite_plugin_commonjs = __toESM(require("vite-plugin-commonjs"));
|
|
2391
2392
|
|
|
2392
2393
|
// pkgs/@akanjs/cli/src/module/module.prompt.ts
|
|
2393
2394
|
var frameworkDescription = `
|
|
@@ -4069,6 +4070,7 @@ var ApplicationRunner = class {
|
|
|
4069
4070
|
plugins: [
|
|
4070
4071
|
(0, import_plugin_react.default)(),
|
|
4071
4072
|
(0, import_vite_tsconfig_paths.default)(),
|
|
4073
|
+
(0, import_vite_plugin_commonjs.default)(),
|
|
4072
4074
|
(0, import_vite_plugin_node_polyfills.nodePolyfills)({
|
|
4073
4075
|
exclude: ["fs"],
|
|
4074
4076
|
include: ["crypto", "process", "stream", "util"],
|
package/index.mjs
CHANGED
|
@@ -4226,6 +4226,7 @@ import path5 from "path";
|
|
|
4226
4226
|
import * as vite from "vite";
|
|
4227
4227
|
import { nodePolyfills } from "vite-plugin-node-polyfills";
|
|
4228
4228
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
4229
|
+
import commonjs from "vite-plugin-commonjs";
|
|
4229
4230
|
var ApplicationRunner;
|
|
4230
4231
|
var init_application_runner = __esm({
|
|
4231
4232
|
"pkgs/@akanjs/cli/src/application/application.runner.ts"() {
|
|
@@ -4388,6 +4389,7 @@ var init_application_runner = __esm({
|
|
|
4388
4389
|
plugins: [
|
|
4389
4390
|
react(),
|
|
4390
4391
|
tsconfigPaths(),
|
|
4392
|
+
commonjs(),
|
|
4391
4393
|
nodePolyfills({
|
|
4392
4394
|
exclude: ["fs"],
|
|
4393
4395
|
include: ["crypto", "process", "stream", "util"],
|
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.104",
|
|
5
5
|
"bin": {
|
|
6
6
|
"akan": "index.js"
|
|
7
7
|
},
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"typescript": "5.8.3",
|
|
46
46
|
"uuid": "^11.0.3",
|
|
47
47
|
"vite": "^6.3.4",
|
|
48
|
+
"vite-plugin-commonjs": "^0.10.4",
|
|
48
49
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
49
50
|
"vite-tsconfig-paths": "^5.1.4"
|
|
50
51
|
},
|