@akanjs/cli 1.0.3 → 1.0.4-canary.1

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/cjs/index.js CHANGED
@@ -4683,7 +4683,8 @@ var ApplicationRunner = class {
4683
4683
  minify: true,
4684
4684
  rollupOptions: {
4685
4685
  // ...(process.env.USE_AKANJS_PKGS === "true" ? {} : { external: ["next/server"] }),
4686
- input: `${app.cwdPath}/app/index.html`
4686
+ input: `${app.cwdPath}/app/index.html`,
4687
+ external: ["capacitor-cli.d.ts"]
4687
4688
  }
4688
4689
  },
4689
4690
  css: { postcss: `${app.cwdPath}/postcss.config.js` },
@@ -4745,7 +4746,10 @@ var ApplicationRunner = class {
4745
4746
  "process.version": JSON.stringify(process.version)
4746
4747
  },
4747
4748
  server: { host: "0.0.0.0", port: 4201 },
4748
- logLevel: "error"
4749
+ logLevel: "error",
4750
+ optimizeDeps: {
4751
+ exclude: ["@capgo/capacitor-updater"]
4752
+ }
4749
4753
  });
4750
4754
  return config;
4751
4755
  }
package/esm/index.js CHANGED
@@ -4664,7 +4664,8 @@ var ApplicationRunner = class {
4664
4664
  minify: true,
4665
4665
  rollupOptions: {
4666
4666
  // ...(process.env.USE_AKANJS_PKGS === "true" ? {} : { external: ["next/server"] }),
4667
- input: `${app.cwdPath}/app/index.html`
4667
+ input: `${app.cwdPath}/app/index.html`,
4668
+ external: ["capacitor-cli.d.ts"]
4668
4669
  }
4669
4670
  },
4670
4671
  css: { postcss: `${app.cwdPath}/postcss.config.js` },
@@ -4726,7 +4727,10 @@ var ApplicationRunner = class {
4726
4727
  "process.version": JSON.stringify(process.version)
4727
4728
  },
4728
4729
  server: { host: "0.0.0.0", port: 4201 },
4729
- logLevel: "error"
4730
+ logLevel: "error",
4731
+ optimizeDeps: {
4732
+ exclude: ["@capgo/capacitor-updater"]
4733
+ }
4730
4734
  });
4731
4735
  return config;
4732
4736
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "sourceType": "module",
4
4
  "name": "@akanjs/cli",
5
- "version": "1.0.3",
5
+ "version": "1.0.4-canary.1",
6
6
  "bin": {
7
7
  "akan": "esm/index.js"
8
8
  },