@akanjs/cli 0.0.104 → 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 +7 -0
- package/index.mjs +7 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4113,6 +4113,13 @@ var ApplicationRunner = class {
|
|
|
4113
4113
|
"process.platform": JSON.stringify("browser"),
|
|
4114
4114
|
"process.version": JSON.stringify(process.version)
|
|
4115
4115
|
},
|
|
4116
|
+
optimizeDeps: {
|
|
4117
|
+
include: ["@akanjs/base"],
|
|
4118
|
+
esbuildOptions: {
|
|
4119
|
+
format: "esm",
|
|
4120
|
+
target: "esnext"
|
|
4121
|
+
}
|
|
4122
|
+
},
|
|
4116
4123
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4117
4124
|
logLevel: "error"
|
|
4118
4125
|
});
|
package/index.mjs
CHANGED
|
@@ -4432,6 +4432,13 @@ var init_application_runner = __esm({
|
|
|
4432
4432
|
"process.platform": JSON.stringify("browser"),
|
|
4433
4433
|
"process.version": JSON.stringify(process.version)
|
|
4434
4434
|
},
|
|
4435
|
+
optimizeDeps: {
|
|
4436
|
+
include: ["@akanjs/base"],
|
|
4437
|
+
esbuildOptions: {
|
|
4438
|
+
format: "esm",
|
|
4439
|
+
target: "esnext"
|
|
4440
|
+
}
|
|
4441
|
+
},
|
|
4435
4442
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4436
4443
|
logLevel: "error"
|
|
4437
4444
|
});
|