anycloud 0.0.7 → 0.0.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/binaries/anycloud-darwin-arm64 +0 -0
- package/binaries/anycloud-darwin-x64 +0 -0
- package/binaries/anycloud-linux-arm64 +0 -0
- package/binaries/anycloud-linux-x64 +0 -0
- package/dist/cli/commands/build.js +48 -0
- package/dist/cli/commands/build.js.map +1 -0
- package/dist/cli/commands/config/edit.js +33 -1
- package/dist/cli/commands/config/edit.js.map +1 -1
- package/dist/cli/commands/config/list.js +1 -0
- package/dist/cli/commands/config/list.js.map +1 -1
- package/dist/cli/commands/config/new.js +17 -9
- package/dist/cli/commands/config/new.js.map +1 -1
- package/dist/cli/commands/logs.js +1 -1
- package/dist/cli/commands/logs.js.map +1 -1
- package/dist/cli/commands/run.js +14 -18
- package/dist/cli/commands/run.js.map +1 -1
- package/dist/cli/commands/status.js +5 -2
- package/dist/cli/commands/status.js.map +1 -1
- package/dist/cli/commands/terminate.js +1 -1
- package/dist/cli/commands/terminate.js.map +1 -1
- package/dist/cli/commands/update.js +100 -0
- package/dist/cli/commands/update.js.map +1 -0
- package/dist/cli/index.js +5 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/services/config.js +14 -17
- package/dist/cli/services/config.js.map +1 -1
- package/dist/cli/services/docker.js +152 -53
- package/dist/cli/services/docker.js.map +1 -1
- package/dist/cli/utils/output.js +7 -4
- package/dist/cli/utils/output.js.map +1 -1
- package/dist/daemon/server.js +0 -14
- package/dist/daemon/server.js.map +1 -1
- package/dist/shared/types.js.map +1 -1
- package/package.json +9 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anycloud",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Deploy containerized jobs and servers to any cloud provider",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -10,19 +10,21 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/cli",
|
|
12
12
|
"dist/shared",
|
|
13
|
-
"dist/daemon"
|
|
13
|
+
"dist/daemon",
|
|
14
|
+
"binaries"
|
|
14
15
|
],
|
|
15
16
|
"engines": {
|
|
16
17
|
"node": ">=22.x"
|
|
17
18
|
},
|
|
18
19
|
"scripts": {
|
|
19
20
|
"build": "yarn clean && tsc",
|
|
21
|
+
"build:binaries": "bash release/build-binaries.sh",
|
|
20
22
|
"clean": "rm -rf dist",
|
|
21
23
|
"start": "yarn build && wrangler dev",
|
|
22
24
|
"deploy:staging": "wrangler deploy --env staging",
|
|
23
|
-
"deploy:
|
|
24
|
-
"cli": "node ./dist/cli/index.js",
|
|
25
|
-
"cli:
|
|
25
|
+
"deploy:prod": "wrangler deploy --env production",
|
|
26
|
+
"cli": "CONDUCTOR_URL=https://conductor.laplazahealth.org node ./dist/cli/index.js",
|
|
27
|
+
"cli:prod": "node ./dist/cli/index.js",
|
|
26
28
|
"start:conductor": "node ./dist/conductor/server.js",
|
|
27
29
|
"test": "LOCAL=true vitest run",
|
|
28
30
|
"test:watch": "LOCAL=true vitest",
|
|
@@ -35,6 +37,7 @@
|
|
|
35
37
|
"test:vmstartup": "bash test/integration/vmstartup.test.sh",
|
|
36
38
|
"test:conductor": "bash test/integration/conductor-startup.test.sh",
|
|
37
39
|
"test:e2e:azure": "bash scripts/test-jobs-integration-azure.sh",
|
|
40
|
+
"test:binary": "bash test/integration/binary.test.sh",
|
|
38
41
|
"test:all": "yarn test && yarn test:integration",
|
|
39
42
|
"style": "yarn eslint . --ext .js,.ts && yarn prettier --check .",
|
|
40
43
|
"fmt": "yarn prettier --write .",
|
|
@@ -87,6 +90,7 @@
|
|
|
87
90
|
"@types/prompts": "^2.4.9",
|
|
88
91
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
89
92
|
"@typescript-eslint/parser": "^6.21.0",
|
|
93
|
+
"bun": "^1.3.3",
|
|
90
94
|
"cross-fetch": "^3.1.5",
|
|
91
95
|
"eslint": "^8.57.0",
|
|
92
96
|
"eslint-config-prettier": "^9.1.0",
|