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