@junobuild/cli 0.2.8 → 0.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/cli",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "The Juno command-line interface",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -30,12 +30,13 @@
30
30
  "@dfinity/ic-management": "^6.0.6",
31
31
  "@dfinity/identity": "^2.3.0",
32
32
  "@dfinity/principal": "^2.3.0",
33
- "@junobuild/admin": "^0.1.6",
34
- "@junobuild/cli-tools": "^0.1.6",
35
- "@junobuild/config-loader": "^0.2.0",
36
- "@junobuild/core": "^0.1.9",
37
- "@junobuild/did-tools": "^0.2.0",
38
- "@junobuild/utils": "^0.1.1",
33
+ "@junobuild/admin": "^0.2.0",
34
+ "@junobuild/cli-tools": "^0.1.9",
35
+ "@junobuild/config": "^0.1.6",
36
+ "@junobuild/config-loader": "^0.2.1",
37
+ "@junobuild/core": "^0.1.11",
38
+ "@junobuild/did-tools": "^0.2.1",
39
+ "@junobuild/utils": "^0.1.3",
39
40
  "chokidar": "^4.0.3",
40
41
  "conf": "^13.1.0",
41
42
  "open": "^10.1.0",
@@ -43,25 +44,24 @@
43
44
  "portfinder": "^1.0.35",
44
45
  "prompts": "^2.4.2",
45
46
  "semver": "^7.7.1",
46
- "terminal-link": "^3.0.0"
47
+ "terminal-link": "^4.0.0"
47
48
  },
48
49
  "devDependencies": {
49
- "@eslint/eslintrc": "^3.3.0",
50
- "@eslint/js": "^9.22.0",
51
- "@junobuild/config": "^0.1.3",
52
- "@junobuild/functions": "^0.0.13",
53
- "@types/node": "^22.13.10",
50
+ "@eslint/eslintrc": "^3.3.1",
51
+ "@eslint/js": "^9.24.0",
52
+ "@junobuild/functions": "^0.0.15",
53
+ "@types/node": "^22.14.0",
54
54
  "@types/prompts": "^2.4.9",
55
- "@types/semver": "^7.5.8",
55
+ "@types/semver": "^7.7.0",
56
56
  "dotenv": "^16.4.7",
57
- "esbuild": "^0.25.1",
58
- "eslint": "^9.22.0",
57
+ "esbuild": "^0.25.2",
58
+ "eslint": "^9.24.0",
59
59
  "eslint-config-love": "^119.0.0",
60
60
  "eslint-config-prettier": "^10.1.1",
61
61
  "globals": "^16.0.0",
62
62
  "prettier": "^3.5.3",
63
63
  "prettier-plugin-organize-imports": "^4.1.0",
64
- "typescript": "^5.8.2"
64
+ "typescript": "^5.8.3"
65
65
  },
66
66
  "repository": {
67
67
  "type": "git",
@@ -1,13 +1,23 @@
1
1
  services:
2
- juno-satellite:
3
- image: junobuild/satellite:latest
2
+ juno-skylab:
3
+ image: junobuild/skylab:latest
4
4
  ports:
5
+ # Local replica used to simulate execution
5
6
  - 5987:5987
7
+ # Little admin server (e.g. to transfer ICP from the ledger)
6
8
  - 5999:5999
9
+ # Console UI (like https://console.juno.build)
10
+ - 5866:5866
7
11
  volumes:
8
- - juno_satellite:/juno/.juno
12
+ # Persistent volume to store internal state
13
+ - juno_skylab:/juno/.juno
14
+ # Local dev config file to customize Satellite behavior
9
15
  - ./<JUNO_DEV_CONFIG>:/juno/<JUNO_DEV_CONFIG>
16
+ # Shared folder for deploying and hot-reloading serverless functions
17
+ # For example, when building functions in TypeScript, the output `.mjs` files are placed here.
18
+ # The container then bundles them into your Satellite WASM (also placed here),
19
+ # and automatically upgrades the environment.
10
20
  - ./target/deploy:/juno/target/deploy/
11
21
 
12
22
  volumes:
13
- juno_satellite:
23
+ juno_skylab: