@akanjs/cli 0.0.44 → 0.0.46
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 +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4193,6 +4193,7 @@ page.tsx_end
|
|
|
4193
4193
|
entryPoints: [`${pkg.cwdPath}/index.ts`],
|
|
4194
4194
|
bundle: true,
|
|
4195
4195
|
packages: "external",
|
|
4196
|
+
format: "cjs",
|
|
4196
4197
|
outdir: distPkg.cwdPath,
|
|
4197
4198
|
logLevel: "warning",
|
|
4198
4199
|
plugins: [(0, import_esbuild_plugin_d.dtsPlugin)({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })]
|
|
@@ -4215,7 +4216,6 @@ page.tsx_end
|
|
|
4215
4216
|
packages: "external",
|
|
4216
4217
|
outdir: `${distPkg.cwdPath}/src/templates`,
|
|
4217
4218
|
outbase: `${pkg.cwdPath}/src/templates`,
|
|
4218
|
-
platform: "node",
|
|
4219
4219
|
format: "cjs",
|
|
4220
4220
|
footer: { js: "module.exports = module.exports.default;" }
|
|
4221
4221
|
});
|
|
@@ -4228,6 +4228,8 @@ page.tsx_end
|
|
|
4228
4228
|
entryPoints: [`${pkg.cwdPath}/index.ts`],
|
|
4229
4229
|
bundle: true,
|
|
4230
4230
|
packages: "external",
|
|
4231
|
+
format: "cjs",
|
|
4232
|
+
external: ["@akanjs/*"],
|
|
4231
4233
|
outdir: distPkg.cwdPath,
|
|
4232
4234
|
logLevel: "warning",
|
|
4233
4235
|
plugins: [(0, import_esbuild_plugin_d.dtsPlugin)({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })]
|