@akanjs/devkit 2.4.0-rc.7 → 2.4.0-rc.8
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.
|
@@ -268,13 +268,11 @@ describe("AkanAppConfig", () => {
|
|
|
268
268
|
// The workspace-root install covers the toolchain/runtime plus every app Capacitor plugin
|
|
269
269
|
// (deduped — "@capacitor/core" appears in both source lists).
|
|
270
270
|
const expectedMobilePackages: string[] = [
|
|
271
|
-
"firebase",
|
|
272
271
|
"@capacitor/cli",
|
|
273
272
|
"@capacitor/core",
|
|
274
273
|
"@capacitor/ios",
|
|
275
274
|
"@capacitor/android",
|
|
276
275
|
"@capacitor/assets",
|
|
277
|
-
"@capacitor-community/fcm",
|
|
278
276
|
"@capacitor/app",
|
|
279
277
|
"@capacitor/browser",
|
|
280
278
|
"@capacitor/camera",
|
|
@@ -292,7 +290,6 @@ describe("AkanAppConfig", () => {
|
|
|
292
290
|
expectedMobilePackages.map((lib) => `${lib}@${runtimeDependencies[lib as keyof typeof runtimeDependencies]}`),
|
|
293
291
|
);
|
|
294
292
|
expect(config.getMobileAppCapacitorPlugins()).toEqual([
|
|
295
|
-
"@capacitor-community/fcm",
|
|
296
293
|
"@capacitor/app",
|
|
297
294
|
"@capacitor/browser",
|
|
298
295
|
"@capacitor/camera",
|
package/akanConfig/akanConfig.ts
CHANGED
|
@@ -58,7 +58,6 @@ const DEFAULT_BACKEND_RUNTIME_PACKAGES = ["croner"] as const;
|
|
|
58
58
|
// All are declared only as optional peers, so a fresh workspace never auto-installs them; the mobile
|
|
59
59
|
// preflight installs them (together with MOBILE_APP_CAPACITOR_PLUGINS) at the workspace root.
|
|
60
60
|
const MOBILE_RUNTIME_PACKAGES = [
|
|
61
|
-
"firebase",
|
|
62
61
|
"@capacitor/cli",
|
|
63
62
|
"@capacitor/core",
|
|
64
63
|
"@capacitor/ios",
|
|
@@ -73,7 +72,6 @@ const MOBILE_RUNTIME_PACKAGES = [
|
|
|
73
72
|
// alongside MOBILE_RUNTIME_PACKAGES (pinned via optional peers) and declared in the app with a "*"
|
|
74
73
|
// range so bun dedupes them to that hoisted version instead of pinning a second source of truth.
|
|
75
74
|
const MOBILE_APP_CAPACITOR_PLUGINS = [
|
|
76
|
-
"@capacitor-community/fcm",
|
|
77
75
|
"@capacitor/app",
|
|
78
76
|
"@capacitor/browser",
|
|
79
77
|
"@capacitor/camera",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/devkit",
|
|
3
|
-
"version": "2.4.0-rc.
|
|
3
|
+
"version": "2.4.0-rc.8",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@langchain/openai": "^1.4.6",
|
|
33
33
|
"@tailwindcss/node": "^4.3.0",
|
|
34
34
|
"@trapezedev/project": "^7.1.4",
|
|
35
|
-
"akanjs": "2.4.0-rc.
|
|
35
|
+
"akanjs": "2.4.0-rc.8",
|
|
36
36
|
"chalk": "^5.6.2",
|
|
37
37
|
"commander": "^14.0.3",
|
|
38
38
|
"daisyui": "5.5.23",
|