@junobuild/cli 0.0.51 → 0.0.53

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.0.51",
3
+ "version": "0.0.53",
4
4
  "description": "The Juno command-line interface",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -20,16 +20,21 @@
20
20
  "format:check": "prettier --check .",
21
21
  "build": "tsc --noEmit && node rmdir.mjs && node esbuild.mjs",
22
22
  "dev": "node rmdir.mjs && NODE_ENV=development node esbuild.mjs",
23
- "lint": "eslint --max-warnings 0 src/**/*"
23
+ "lint": "eslint --max-warnings 0 \"src/**/*\""
24
24
  },
25
25
  "dependencies": {
26
- "@dfinity/agent": "^0.20.2",
27
- "@dfinity/candid": "^0.20.2",
28
- "@dfinity/identity": "^0.20.2",
29
- "@dfinity/principal": "^0.20.2",
30
- "@junobuild/admin": "^0.0.45",
31
- "@junobuild/core-peer": "^0.0.10",
32
- "@junobuild/utils": "^0.0.18",
26
+ "@babel/core": "^7.23.9",
27
+ "@babel/plugin-transform-modules-commonjs": "^7.23.3",
28
+ "@babel/preset-typescript": "^7.23.3",
29
+ "@dfinity/agent": "^1.0.1",
30
+ "@dfinity/candid": "^1.0.1",
31
+ "@dfinity/identity": "^1.0.1",
32
+ "@dfinity/principal": "^1.0.1",
33
+ "@junobuild/admin": "^0.0.46",
34
+ "@junobuild/cli-tools": "^0.0.3",
35
+ "@junobuild/config": "^0.0.2",
36
+ "@junobuild/core-peer": "^0.0.11",
37
+ "@junobuild/utils": "^0.0.19",
33
38
  "conf": "^12.0.0",
34
39
  "file-type": "^19.0.0",
35
40
  "listr": "^0.14.3",
@@ -5,7 +5,7 @@ services:
5
5
  - 5987:5987
6
6
  volumes:
7
7
  - juno_satellite:/juno/.juno
8
- - ./juno.dev.json:/juno/juno.dev.json
8
+ - ./<JUNO_DEV_CONFIG>:/juno/<JUNO_DEV_CONFIG>
9
9
  - ./target/deploy:/juno/target/deploy/
10
10
 
11
11
  volumes:
@@ -0,0 +1,12 @@
1
+ import {defineDevConfig} from '@junobuild/config';
2
+
3
+ /** @type {import('@junobuild/config').JunoDevConfig} */
4
+ export default defineDevConfig(() => ({
5
+ satellite: {
6
+ collections: {
7
+ db: [],
8
+ storage: []
9
+ },
10
+ controllers: []
11
+ }
12
+ }));
@@ -0,0 +1,11 @@
1
+ import {defineDevConfig} from '@junobuild/config';
2
+
3
+ export default defineDevConfig(() => ({
4
+ satellite: {
5
+ collections: {
6
+ db: [],
7
+ storage: []
8
+ },
9
+ controllers: []
10
+ }
11
+ }));
@@ -0,0 +1,12 @@
1
+ import {defineConfig} from '@junobuild/config';
2
+
3
+ /** @type {import('@junobuild/config').JunoConfig} */
4
+ export default defineConfig({
5
+ satellite: {
6
+ satelliteId: '<SATELLITE_ID>',
7
+ source: '<SOURCE>'
8
+ },
9
+ orbiter: {
10
+ orbiterId: '<ORBITER_ID>'
11
+ }
12
+ });
@@ -0,0 +1,11 @@
1
+ import {defineConfig} from '@junobuild/config';
2
+
3
+ export default defineConfig({
4
+ satellite: {
5
+ satelliteId: '<SATELLITE_ID>',
6
+ source: '<SOURCE>'
7
+ },
8
+ orbiter: {
9
+ orbiterId: '<ORBITER_ID>'
10
+ }
11
+ });
@@ -0,0 +1,9 @@
1
+ import {defineConfig} from '@junobuild/config';
2
+
3
+ /** @type {import('@junobuild/config').JunoConfig} */
4
+ export default defineConfig({
5
+ satellite: {
6
+ satelliteId: '<SATELLITE_ID>',
7
+ source: '<SOURCE>'
8
+ }
9
+ });
@@ -0,0 +1,8 @@
1
+ import {defineConfig} from '@junobuild/config';
2
+
3
+ export default defineConfig({
4
+ satellite: {
5
+ satelliteId: '<SATELLITE_ID>',
6
+ source: '<SOURCE>'
7
+ }
8
+ });