@junobuild/cli 0.5.4 → 0.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/cli",
3
- "version": "0.5.4",
3
+ "version": "0.6.1",
4
4
  "description": "The Juno command-line interface",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -26,17 +26,17 @@
26
26
  "@dfinity/agent": "^2.3.0",
27
27
  "@dfinity/auth-client": "^2.3.0",
28
28
  "@dfinity/candid": "^2.3.0",
29
- "@dfinity/ic-management": "^6.1.1",
29
+ "@dfinity/ic-management": "^6.2.0",
30
30
  "@dfinity/identity": "^2.3.0",
31
31
  "@dfinity/principal": "^2.3.0",
32
- "@junobuild/admin": "^0.5.0",
33
- "@junobuild/cdn": "^0.1.1",
34
- "@junobuild/cli-tools": "^0.2.2",
35
- "@junobuild/config": "^0.1.8",
32
+ "@junobuild/admin": "^0.5.1",
33
+ "@junobuild/cdn": "^0.1.2",
34
+ "@junobuild/cli-tools": "^0.2.3",
35
+ "@junobuild/config": "^0.2.3",
36
36
  "@junobuild/config-loader": "^0.2.1",
37
- "@junobuild/core": "^0.1.15",
37
+ "@junobuild/core": "^0.1.16",
38
38
  "@junobuild/did-tools": "^0.2.1",
39
- "@junobuild/storage": "^0.2.0",
39
+ "@junobuild/storage": "^0.2.1",
40
40
  "@junobuild/utils": "^0.1.3",
41
41
  "chokidar": "^4.0.3",
42
42
  "conf": "^13.1.0",
@@ -50,7 +50,7 @@
50
50
  "devDependencies": {
51
51
  "@eslint/eslintrc": "^3.3.1",
52
52
  "@eslint/js": "^9.27.0",
53
- "@junobuild/functions": "^0.1.1",
53
+ "@junobuild/functions": "^0.1.2",
54
54
  "@types/node": "^22.15.27",
55
55
  "@types/prompts": "^2.4.9",
56
56
  "@types/semver": "^7.7.0",
@@ -1,21 +0,0 @@
1
- services:
2
- juno-satellite:
3
- image: junobuild/satellite:latest
4
- ports:
5
- # Local replica used to simulate execution
6
- - 5987:5987
7
- # Little admin server (e.g. to transfer ICP from the ledger)
8
- - 5999:5999
9
- volumes:
10
- # Persistent volume to store internal state
11
- - juno_satellite:/juno/.juno
12
- # Local dev config file to customize Satellite behavior
13
- - ./<JUNO_DEV_CONFIG>:/juno/<JUNO_DEV_CONFIG>
14
- # Shared folder for deploying and hot-reloading serverless functions
15
- # For example, when building functions in TypeScript, the output `.mjs` files are placed here.
16
- # The container then bundles them into your Satellite WASM (also placed here),
17
- # and automatically upgrades the environment.
18
- - ./target/deploy:/juno/target/deploy/
19
-
20
- volumes:
21
- juno_satellite:
@@ -1,24 +0,0 @@
1
- services:
2
- juno-skylab:
3
- image: junobuild/skylab:latest
4
- ports:
5
- # Local replica used to simulate execution
6
- - 5987:5987
7
- # Little admin server (e.g. to transfer ICP from the ledger)
8
- - 5999:5999
9
- # Console UI (like https://console.juno.build)
10
- - 5866:5866
11
- volumes:
12
- # Persistent volume to store internal state
13
- - juno_skylab:/juno/.juno
14
- # Your Juno configuration file.
15
- # Notably used to provide your development Satellite ID to the emulator.
16
- - ./<JUNO_CONFIG>:/juno/<JUNO_CONFIG>
17
- # Shared folder for deploying and hot-reloading serverless functions
18
- # For example, when building functions in TypeScript, the output `.mjs` files are placed here.
19
- # The container then bundles them into your Satellite WASM (also placed here),
20
- # and automatically upgrades the environment.
21
- - ./target/deploy:/juno/target/deploy/
22
-
23
- volumes:
24
- juno_skylab: