@akanjs/cli 0.0.105 → 0.0.106
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 -13
- package/index.mjs +8 -13
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4070,12 +4070,7 @@ var ApplicationRunner = class {
|
|
|
4070
4070
|
plugins: [
|
|
4071
4071
|
(0, import_plugin_react.default)(),
|
|
4072
4072
|
(0, import_vite_tsconfig_paths.default)(),
|
|
4073
|
-
(0, import_vite_plugin_commonjs.default)(
|
|
4074
|
-
filter(id) {
|
|
4075
|
-
if (id.includes("@akanjs/base"))
|
|
4076
|
-
return true;
|
|
4077
|
-
}
|
|
4078
|
-
}),
|
|
4073
|
+
(0, import_vite_plugin_commonjs.default)(),
|
|
4079
4074
|
(0, import_vite_plugin_node_polyfills.nodePolyfills)({
|
|
4080
4075
|
exclude: ["fs"],
|
|
4081
4076
|
include: ["crypto", "process", "stream", "util"],
|
|
@@ -4118,13 +4113,13 @@ var ApplicationRunner = class {
|
|
|
4118
4113
|
"process.platform": JSON.stringify("browser"),
|
|
4119
4114
|
"process.version": JSON.stringify(process.version)
|
|
4120
4115
|
},
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4116
|
+
optimizeDeps: {
|
|
4117
|
+
include: ["@akanjs/base"],
|
|
4118
|
+
esbuildOptions: {
|
|
4119
|
+
format: "esm",
|
|
4120
|
+
target: "esnext"
|
|
4121
|
+
}
|
|
4122
|
+
},
|
|
4128
4123
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4129
4124
|
logLevel: "error"
|
|
4130
4125
|
});
|
package/index.mjs
CHANGED
|
@@ -4389,12 +4389,7 @@ var init_application_runner = __esm({
|
|
|
4389
4389
|
plugins: [
|
|
4390
4390
|
react(),
|
|
4391
4391
|
tsconfigPaths(),
|
|
4392
|
-
commonjs(
|
|
4393
|
-
filter(id) {
|
|
4394
|
-
if (id.includes("@akanjs/base"))
|
|
4395
|
-
return true;
|
|
4396
|
-
}
|
|
4397
|
-
}),
|
|
4392
|
+
commonjs(),
|
|
4398
4393
|
nodePolyfills({
|
|
4399
4394
|
exclude: ["fs"],
|
|
4400
4395
|
include: ["crypto", "process", "stream", "util"],
|
|
@@ -4437,13 +4432,13 @@ var init_application_runner = __esm({
|
|
|
4437
4432
|
"process.platform": JSON.stringify("browser"),
|
|
4438
4433
|
"process.version": JSON.stringify(process.version)
|
|
4439
4434
|
},
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4435
|
+
optimizeDeps: {
|
|
4436
|
+
include: ["@akanjs/base"],
|
|
4437
|
+
esbuildOptions: {
|
|
4438
|
+
format: "esm",
|
|
4439
|
+
target: "esnext"
|
|
4440
|
+
}
|
|
4441
|
+
},
|
|
4447
4442
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4448
4443
|
logLevel: "error"
|
|
4449
4444
|
});
|