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