@akanjs/cli 2.2.7 → 2.2.9
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/incrementalBuilder.proc.js +2 -1
- package/index.js +2 -2
- package/package.json +2 -2
|
@@ -4660,6 +4660,7 @@ export default function GeneratedLayout({ children, params, searchParams }: Layo
|
|
|
4660
4660
|
gaTrackingId={userLayout.gaTrackingId ?? inheritedLayout.gaTrackingId}
|
|
4661
4661
|
layoutStyle={userLayout.layoutStyle ?? inheritedLayout.layoutStyle}
|
|
4662
4662
|
reconnect={userLayout.reconnect ?? inheritedLayout.reconnect ?? false}
|
|
4663
|
+
wsConnect={userLayout.wsConnect ?? inheritedLayout.wsConnect ?? true}
|
|
4663
4664
|
allDictionary={process.env.AKAN_PUBLIC_RENDER_ENV === "ssr" ? allDictionary : undefined}
|
|
4664
4665
|
>
|
|
4665
4666
|
<UserLayout params={params} searchParams={searchParams}>{children}</UserLayout>
|
|
@@ -8162,7 +8163,7 @@ var uploadRelease = async (appName, {
|
|
|
8162
8163
|
preparingFormSpinner.succeed("Preparing form data... done");
|
|
8163
8164
|
try {
|
|
8164
8165
|
const uploadingFilesSpinner = spinning("Uploading files to server...");
|
|
8165
|
-
const [buildFile2, sourceFile2, appBuildFile2] = await httpClient.post("/file/
|
|
8166
|
+
const [buildFile2, sourceFile2, appBuildFile2] = await httpClient.post("/file/addFiles", formData);
|
|
8166
8167
|
uploadingFilesSpinner.succeed("Uploading files to server... done");
|
|
8167
8168
|
const fetchingAppSpinner = spinning(`Fetching dev app information for ${appName}...`);
|
|
8168
8169
|
const major = platformVersion ? parseInt(platformVersion.split(".")[0]) : 1;
|
package/index.js
CHANGED
|
@@ -4658,6 +4658,7 @@ export default function GeneratedLayout({ children, params, searchParams }: Layo
|
|
|
4658
4658
|
gaTrackingId={userLayout.gaTrackingId ?? inheritedLayout.gaTrackingId}
|
|
4659
4659
|
layoutStyle={userLayout.layoutStyle ?? inheritedLayout.layoutStyle}
|
|
4660
4660
|
reconnect={userLayout.reconnect ?? inheritedLayout.reconnect ?? false}
|
|
4661
|
+
wsConnect={userLayout.wsConnect ?? inheritedLayout.wsConnect ?? true}
|
|
4661
4662
|
allDictionary={process.env.AKAN_PUBLIC_RENDER_ENV === "ssr" ? allDictionary : undefined}
|
|
4662
4663
|
>
|
|
4663
4664
|
<UserLayout params={params} searchParams={searchParams}>{children}</UserLayout>
|
|
@@ -8160,7 +8161,7 @@ var uploadRelease = async (appName, {
|
|
|
8160
8161
|
preparingFormSpinner.succeed("Preparing form data... done");
|
|
8161
8162
|
try {
|
|
8162
8163
|
const uploadingFilesSpinner = spinning("Uploading files to server...");
|
|
8163
|
-
const [buildFile2, sourceFile2, appBuildFile2] = await httpClient.post("/file/
|
|
8164
|
+
const [buildFile2, sourceFile2, appBuildFile2] = await httpClient.post("/file/addFiles", formData);
|
|
8164
8165
|
uploadingFilesSpinner.succeed("Uploading files to server... done");
|
|
8165
8166
|
const fetchingAppSpinner = spinning(`Fetching dev app information for ${appName}...`);
|
|
8166
8167
|
const major = platformVersion ? parseInt(platformVersion.split(".")[0]) : 1;
|
|
@@ -12907,7 +12908,6 @@ import { Logger as Logger17 } from "akanjs/common";
|
|
|
12907
12908
|
// pkgs/@akanjs/cli/workspace/workspace.runner.ts
|
|
12908
12909
|
import path40 from "path";
|
|
12909
12910
|
var defaultWorkspacePeerDependencies = new Set([
|
|
12910
|
-
"@radix-ui/react-dialog",
|
|
12911
12911
|
"@react-spring/web",
|
|
12912
12912
|
"@use-gesture/react",
|
|
12913
12913
|
"croner",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.9",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@langchain/openai": "^1.4.6",
|
|
36
36
|
"@tailwindcss/node": "^4.3.0",
|
|
37
37
|
"@trapezedev/project": "^7.1.4",
|
|
38
|
-
"akanjs": "2.2.
|
|
38
|
+
"akanjs": "2.2.9",
|
|
39
39
|
"chalk": "^5.6.2",
|
|
40
40
|
"commander": "^14.0.3",
|
|
41
41
|
"daisyui": "^5.5.20",
|