@akanjs/cli 0.0.106 → 0.0.108
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 +2 -9
- package/index.mjs +2 -9
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -293,7 +293,7 @@ var import_dayjs2 = __toESM(require("dayjs"));
|
|
|
293
293
|
|
|
294
294
|
// pkgs/@akanjs/common/isValidDate.ts
|
|
295
295
|
var import_dayjs3 = __toESM(require("dayjs"));
|
|
296
|
-
var import_customParseFormat = __toESM(require("dayjs/plugin/customParseFormat"));
|
|
296
|
+
var import_customParseFormat = __toESM(require("dayjs/plugin/customParseFormat.js"));
|
|
297
297
|
import_dayjs3.default.extend(import_customParseFormat.default);
|
|
298
298
|
|
|
299
299
|
// pkgs/@akanjs/common/randomPicks.ts
|
|
@@ -4063,7 +4063,7 @@ var ApplicationRunner = class {
|
|
|
4063
4063
|
outDir: `${app.dist.cwdPath}/csr`,
|
|
4064
4064
|
sourcemap: false,
|
|
4065
4065
|
emptyOutDir: true,
|
|
4066
|
-
rollupOptions: { external: ["next/server"], input: `${app.cwdPath}/app/index.html` }
|
|
4066
|
+
rollupOptions: { external: ["next/server", "@akanjs/base"], input: `${app.cwdPath}/app/index.html` }
|
|
4067
4067
|
},
|
|
4068
4068
|
css: { postcss: `${app.cwdPath}/postcss.config.js` },
|
|
4069
4069
|
publicDir: `${app.cwdPath}/public`,
|
|
@@ -4113,13 +4113,6 @@ 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
|
-
},
|
|
4123
4116
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4124
4117
|
logLevel: "error"
|
|
4125
4118
|
});
|
package/index.mjs
CHANGED
|
@@ -349,7 +349,7 @@ var init_isQueryEqual = __esm({
|
|
|
349
349
|
|
|
350
350
|
// pkgs/@akanjs/common/isValidDate.ts
|
|
351
351
|
import dayjs2 from "dayjs";
|
|
352
|
-
import customParseFormat from "dayjs/plugin/customParseFormat";
|
|
352
|
+
import customParseFormat from "dayjs/plugin/customParseFormat.js";
|
|
353
353
|
var init_isValidDate = __esm({
|
|
354
354
|
"pkgs/@akanjs/common/isValidDate.ts"() {
|
|
355
355
|
init_isDayjs();
|
|
@@ -4382,7 +4382,7 @@ var init_application_runner = __esm({
|
|
|
4382
4382
|
outDir: `${app.dist.cwdPath}/csr`,
|
|
4383
4383
|
sourcemap: false,
|
|
4384
4384
|
emptyOutDir: true,
|
|
4385
|
-
rollupOptions: { external: ["next/server"], input: `${app.cwdPath}/app/index.html` }
|
|
4385
|
+
rollupOptions: { external: ["next/server", "@akanjs/base"], input: `${app.cwdPath}/app/index.html` }
|
|
4386
4386
|
},
|
|
4387
4387
|
css: { postcss: `${app.cwdPath}/postcss.config.js` },
|
|
4388
4388
|
publicDir: `${app.cwdPath}/public`,
|
|
@@ -4432,13 +4432,6 @@ 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
|
-
},
|
|
4442
4435
|
server: { host: "0.0.0.0", port: 4201 },
|
|
4443
4436
|
logLevel: "error"
|
|
4444
4437
|
});
|