great 0.3.1 → 0.3.2
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/README.md +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Integreat CLI
|
|
2
2
|
|
|
3
|
-
A command line interface for Integreat.
|
|
3
|
+
A command line interface for [Integreat](https://github.com/integreat-io/integreat).
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
|
-
Install with `npm i
|
|
7
|
+
Install with `npm i great --global`
|
|
8
8
|
|
|
9
9
|
## Commands
|
|
10
10
|
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import pull from './pull/index.js';
|
|
|
7
7
|
import run from './run/index.js';
|
|
8
8
|
import whoami from './whoami/index.js';
|
|
9
9
|
const apiToken = process.env.GREAT_TOKEN;
|
|
10
|
-
program.version('0.3.
|
|
10
|
+
program.version('0.3.2', '-v, --version').description('Integreat CLI');
|
|
11
11
|
accounts(program, apiToken);
|
|
12
12
|
now(program);
|
|
13
13
|
projects(program, apiToken);
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -10,7 +10,7 @@ import whoami from './whoami/index.js'
|
|
|
10
10
|
|
|
11
11
|
const apiToken = process.env.GREAT_TOKEN
|
|
12
12
|
|
|
13
|
-
program.version('0.3.
|
|
13
|
+
program.version('0.3.2', '-v, --version').description('Integreat CLI')
|
|
14
14
|
|
|
15
15
|
accounts(program, apiToken)
|
|
16
16
|
now(program)
|