@akanjs/devkit 2.1.2-rc.0 → 2.1.2-rc.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/cloud/cloudApi.ts CHANGED
@@ -70,9 +70,10 @@ export class CloudApi {
70
70
  const data = await this.#api.post<boolean>(`/uploadEnv/${devProjectId}`, formData);
71
71
  return data;
72
72
  }
73
- async downloadEnv(devProjectId: string): Promise<void> {
73
+ async downloadEnv(devProjectId: string): Promise<unknown> {
74
74
  const localPath = `${this.#workspace.workspaceRoot}/local/env.tar`;
75
75
  await this.#api.getFile(`/downloadEnv/${devProjectId}`, localPath);
76
+ return localPath;
76
77
  }
77
78
  async getRemoteAuthToken(remoteId: string): Promise<AccessToken | null> {
78
79
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "2.1.2-rc.0",
3
+ "version": "2.1.2-rc.1",
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.1.2-rc.0",
35
+ "akanjs": "2.1.2-rc.1",
36
36
  "chalk": "^5.6.2",
37
37
  "commander": "^14.0.3",
38
38
  "daisyui": "^5.5.20",