@junobuild/cli 0.6.10 → 0.7.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/dist/index.js +600 -611
- package/package.json +19 -18
- package/templates/eject/rust/src/satellite/Cargo.toml +6 -6
- package/templates/init/juno.runner.config.js +18 -0
- package/templates/init/juno.runner.config.ts +17 -0
- package/templates/init/juno.runner.predeploy.config.js +19 -0
- package/templates/init/juno.runner.predeploy.config.ts +18 -0
- package/templates/docker/juno.dev.config.js +0 -12
- package/templates/docker/juno.dev.config.json +0 -9
- package/templates/docker/juno.dev.config.ts +0 -11
- /package/templates/init/{juno.satellite.config.js → juno.skylab.config.js} +0 -0
- /package/templates/init/{juno.satellite.config.ts → juno.skylab.config.ts} +0 -0
- /package/templates/init/{juno.satellite.predeploy.config.js → juno.skylab.predeploy.config.js} +0 -0
- /package/templates/init/{juno.satellite.predeploy.config.ts → juno.skylab.predeploy.config.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "The Juno command-line interface",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,18 +29,19 @@
|
|
|
29
29
|
"@dfinity/ic-management": "^6.2.0",
|
|
30
30
|
"@dfinity/identity": "^2.3.0",
|
|
31
31
|
"@dfinity/principal": "^2.3.0",
|
|
32
|
-
"@
|
|
33
|
-
"@junobuild/
|
|
34
|
-
"@junobuild/
|
|
35
|
-
"@junobuild/
|
|
36
|
-
"@junobuild/config
|
|
37
|
-
"@junobuild/
|
|
38
|
-
"@junobuild/
|
|
39
|
-
"@junobuild/
|
|
40
|
-
"@junobuild/
|
|
32
|
+
"@dfinity/zod-schemas": "^1.0.0",
|
|
33
|
+
"@junobuild/admin": "^1.0.0",
|
|
34
|
+
"@junobuild/cdn": "^0.2.3",
|
|
35
|
+
"@junobuild/cli-tools": "^0.4.1",
|
|
36
|
+
"@junobuild/config": "^1.0.1",
|
|
37
|
+
"@junobuild/config-loader": "^0.4.1",
|
|
38
|
+
"@junobuild/core": "^1.0.3",
|
|
39
|
+
"@junobuild/did-tools": "^0.2.4",
|
|
40
|
+
"@junobuild/storage": "^0.2.4",
|
|
41
|
+
"@junobuild/utils": "^0.1.4",
|
|
41
42
|
"chokidar": "^4.0.3",
|
|
42
43
|
"conf": "^14.0.0",
|
|
43
|
-
"open": "^10.
|
|
44
|
+
"open": "^10.2.0",
|
|
44
45
|
"ora": "^8.2.0",
|
|
45
46
|
"portfinder": "^1.0.37",
|
|
46
47
|
"prompts": "^2.4.2",
|
|
@@ -49,18 +50,18 @@
|
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@eslint/eslintrc": "^3.3.1",
|
|
52
|
-
"@eslint/js": "^9.
|
|
53
|
-
"@junobuild/functions": "^0.2.
|
|
53
|
+
"@eslint/js": "^9.32.0",
|
|
54
|
+
"@junobuild/functions": "^0.2.6",
|
|
54
55
|
"@types/node": "^22.15.27",
|
|
55
56
|
"@types/prompts": "^2.4.9",
|
|
56
57
|
"@types/semver": "^7.7.0",
|
|
57
|
-
"esbuild": "^0.25.
|
|
58
|
-
"eslint": "^9.
|
|
58
|
+
"esbuild": "^0.25.8",
|
|
59
|
+
"eslint": "^9.32.0",
|
|
59
60
|
"eslint-config-love": "^121.0.0",
|
|
60
|
-
"eslint-config-prettier": "^10.1.
|
|
61
|
-
"globals": "^16.
|
|
61
|
+
"eslint-config-prettier": "^10.1.8",
|
|
62
|
+
"globals": "^16.3.0",
|
|
62
63
|
"prettier": "^3.6.2",
|
|
63
|
-
"prettier-plugin-organize-imports": "^4.
|
|
64
|
+
"prettier-plugin-organize-imports": "^4.2.0",
|
|
64
65
|
"typescript": "^5.8.3"
|
|
65
66
|
},
|
|
66
67
|
"repository": {
|
|
@@ -7,12 +7,12 @@ edition = "2021"
|
|
|
7
7
|
crate-type = ["cdylib"]
|
|
8
8
|
|
|
9
9
|
[dependencies]
|
|
10
|
-
candid = "0.10.
|
|
11
|
-
ic-cdk = "0.
|
|
12
|
-
ic-cdk-macros = "0.
|
|
10
|
+
candid = "0.10.14"
|
|
11
|
+
ic-cdk = "0.18.5"
|
|
12
|
+
ic-cdk-macros = "0.18.5"
|
|
13
13
|
serde = "1.0.217"
|
|
14
14
|
serde_cbor = "0.11.2"
|
|
15
|
-
junobuild-satellite = "0.2.
|
|
16
|
-
junobuild-macros = "0.
|
|
17
|
-
junobuild-utils = "0.1.
|
|
15
|
+
junobuild-satellite = "0.2.2"
|
|
16
|
+
junobuild-macros = "0.1.1"
|
|
17
|
+
junobuild-utils = "0.1.2"
|
|
18
18
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {defineConfig} from '@junobuild/config';
|
|
2
|
+
|
|
3
|
+
/** @type {import('@junobuild/config').JunoConfig} */
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
satellite: {
|
|
6
|
+
ids: {
|
|
7
|
+
development: '<DEV_SATELLITE_ID>',
|
|
8
|
+
production: '<PROD_SATELLITE_ID>'
|
|
9
|
+
},
|
|
10
|
+
source: '<SOURCE>'
|
|
11
|
+
},
|
|
12
|
+
emulator: {
|
|
13
|
+
runner: {
|
|
14
|
+
type: '<RUNNER>'
|
|
15
|
+
},
|
|
16
|
+
<IMAGE>: {}
|
|
17
|
+
}
|
|
18
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {defineConfig} from '@junobuild/config';
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
satellite: {
|
|
5
|
+
ids: {
|
|
6
|
+
development: '<DEV_SATELLITE_ID>',
|
|
7
|
+
production: '<PROD_SATELLITE_ID>'
|
|
8
|
+
},
|
|
9
|
+
source: '<SOURCE>'
|
|
10
|
+
},
|
|
11
|
+
emulator: {
|
|
12
|
+
runner: {
|
|
13
|
+
type: '<RUNNER>'
|
|
14
|
+
},
|
|
15
|
+
<IMAGE>: {}
|
|
16
|
+
}
|
|
17
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import {defineConfig} from '@junobuild/config';
|
|
2
|
+
|
|
3
|
+
/** @type {import('@junobuild/config').JunoConfig} */
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
satellite: {
|
|
6
|
+
ids: {
|
|
7
|
+
development: '<DEV_SATELLITE_ID>',
|
|
8
|
+
production: '<PROD_SATELLITE_ID>'
|
|
9
|
+
},
|
|
10
|
+
source: '<SOURCE>',
|
|
11
|
+
predeploy: ['<COMMAND> build']
|
|
12
|
+
},
|
|
13
|
+
emulator: {
|
|
14
|
+
runner: {
|
|
15
|
+
type: '<RUNNER>'
|
|
16
|
+
},
|
|
17
|
+
<IMAGE>: {}
|
|
18
|
+
}
|
|
19
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {defineConfig} from '@junobuild/config';
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
satellite: {
|
|
5
|
+
ids: {
|
|
6
|
+
development: '<DEV_SATELLITE_ID>',
|
|
7
|
+
production: '<PROD_SATELLITE_ID>'
|
|
8
|
+
},
|
|
9
|
+
source: '<SOURCE>',
|
|
10
|
+
predeploy: ['<COMMAND> build']
|
|
11
|
+
},
|
|
12
|
+
emulator: {
|
|
13
|
+
runner: {
|
|
14
|
+
type: '<RUNNER>'
|
|
15
|
+
},
|
|
16
|
+
<IMAGE>: {}
|
|
17
|
+
}
|
|
18
|
+
});
|
|
File without changes
|
|
File without changes
|
/package/templates/init/{juno.satellite.predeploy.config.js → juno.skylab.predeploy.config.js}
RENAMED
|
File without changes
|
/package/templates/init/{juno.satellite.predeploy.config.ts → juno.skylab.predeploy.config.ts}
RENAMED
|
File without changes
|