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 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 @integreat/great --global`
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.1', '-v, --version').description('Integreat CLI');
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "great",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "A CLI for Integreat",
5
5
  "author": "Kjell-Morten Bratsberg Thorsen <kjellmorten@integreat.io>",
6
6
  "license": "UNLICENSED",
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.1', '-v, --version').description('Integreat CLI')
13
+ program.version('0.3.2', '-v, --version').description('Integreat CLI')
14
14
 
15
15
  accounts(program, apiToken)
16
16
  now(program)