cloudron 8.1.0 → 8.1.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/bin/cloudron +1 -1
- package/package.json +1 -1
- package/src/appstore-actions.js +0 -1
package/bin/cloudron
CHANGED
|
@@ -27,7 +27,7 @@ program.option('--server <server>', 'Cloudron domain')
|
|
|
27
27
|
.option('--no-wait', 'Do not wait for the operation to finish');
|
|
28
28
|
|
|
29
29
|
const appstoreCommand = program.command('appstore').description('Commands for publishing to the Appstore')
|
|
30
|
-
.
|
|
30
|
+
.option('--appstore-token <token>', 'AppStore token');
|
|
31
31
|
|
|
32
32
|
appstoreCommand.command('info')
|
|
33
33
|
.description('List info of published app')
|
package/package.json
CHANGED
package/src/appstore-actions.js
CHANGED
|
@@ -5,7 +5,6 @@ import fs from 'fs';
|
|
|
5
5
|
import { exit, locateManifest, parseChangelog } from './helper.js';
|
|
6
6
|
import manifestFormat from '@cloudron/manifest-format';
|
|
7
7
|
import path from 'path';
|
|
8
|
-
import * as readline from './readline.js';
|
|
9
8
|
import safe from '@cloudron/safetydance';
|
|
10
9
|
import superagent from '@cloudron/superagent';
|
|
11
10
|
import Table from 'easy-table';
|