hypha-cli 0.1.11 → 0.1.13
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/dist/apps-D9WCfzIl.mjs +512 -0
- package/dist/artifacts-DHPJIrSS.mjs +955 -0
- package/dist/channel-wm4EXm8s.mjs +101 -0
- package/dist/cli.mjs +19 -11
- package/dist/helpers-BC4AKy6a.mjs +224 -0
- package/dist/index.mjs +1 -1
- package/dist/workspace-DE2jBAXs.mjs +286 -0
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hypha-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Hypha Cloud CLI — manage workspaces, apps, and artifacts",
|
|
5
5
|
"author": "Amun AI AB",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"hypha": "
|
|
9
|
+
"hypha": "bin/hypha.mjs"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"postinstall": "node bin/postinstall.mjs",
|
|
22
22
|
"build": "tsc --noEmit && pkgroll",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"test": "npx tsx test/test-cli-routing.mjs && npx tsx test/test-artifact-path.mjs && npx tsx test/test-apps-commands.mjs && npx tsx test/test-artifacts-commands.mjs && npx tsx test/test-helpers.mjs",
|
|
24
|
+
"test": "npx tsx test/test-cli-routing.mjs && npx tsx test/test-artifact-path.mjs && npx tsx test/test-apps-commands.mjs && npx tsx test/test-artifacts-commands.mjs && npx tsx test/test-helpers.mjs && npx tsx test/test-transfer.mjs",
|
|
25
25
|
"test:integration": "npx tsx test/test-integration.mjs",
|
|
26
26
|
"dev": "tsx src/cli.ts"
|
|
27
27
|
},
|