cloudron 4.12.8 → 4.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudron",
3
- "version": "4.12.8",
3
+ "version": "4.12.9",
4
4
  "license": "MIT",
5
5
  "description": "Cloudron Commandline Tool",
6
6
  "main": "main.js",
@@ -17,18 +17,18 @@
17
17
  },
18
18
  "author": "Cloudron Developers <support@cloudron.io>",
19
19
  "dependencies": {
20
- "async": "^3.2.1",
21
- "cloudron-manifestformat": "^5.10.2",
20
+ "async": "^3.2.2",
21
+ "cloudron-manifestformat": "^5.14.0",
22
22
  "colors": "^1.4.0",
23
23
  "commander": "^6.1.0",
24
- "debug": "^4.3.2",
25
- "easy-table": "^1.1.1",
24
+ "debug": "^4.3.3",
25
+ "easy-table": "^1.2.0",
26
26
  "ejs": "^3.1.6",
27
27
  "eventsource": "^1.1.0",
28
28
  "micromatch": "^4.0.4",
29
29
  "mkdirp": "^1.0.4",
30
30
  "once": "^1.4.0",
31
- "open": "^8.2.1",
31
+ "open": "^8.4.0",
32
32
  "progress": "^2.0.3",
33
33
  "progress-stream": "^2.0.0",
34
34
  "readline-sync": "^1.4.10",
@@ -39,7 +39,7 @@
39
39
  "superagent-sync": "^0.2.1",
40
40
  "supererror": "^0.7.2",
41
41
  "tar-fs": "https://registry.npmjs.org/tar-fs/-/tar-fs-1.12.0.tgz",
42
- "underscore": "^1.13.1"
42
+ "underscore": "^1.13.2"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">= 14.x.x"
@@ -47,7 +47,7 @@
47
47
  "devDependencies": {
48
48
  "expect.js": "^0.3.1",
49
49
  "memorystream": "^0.3.1",
50
- "mocha": "^9.1.1",
50
+ "mocha": "^9.1.3",
51
51
  "rimraf": "^3.0.2"
52
52
  }
53
53
  }
@@ -336,7 +336,7 @@ function build(options) {
336
336
  if (typeof options.setRepository === 'string') {
337
337
  repository = options.setRepository;
338
338
  } else {
339
- repository = readlineSync.question(`Enter repository (e.g registry/username/${manifest.id || path.basename(sourceDir)}): `, {});
339
+ repository = readlineSync.question(`Enter docker repository (e.g registry/username/${manifest.id || path.basename(sourceDir)}): `, {});
340
340
  if (!repository) exit('No repository provided');
341
341
  console.log();
342
342
  }