@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.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. 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` })]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.44",
4
+ "version": "0.0.46",
5
5
  "bin": {
6
6
  "akan": "index.js"
7
7
  },