granola-toolkit 0.14.0 → 0.15.0
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 +5 -2
- package/dist/cli.js +2 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# granola-toolkit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Toolkit for working with Granola meetings, notes, and transcripts.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -15,6 +15,7 @@ Without a global install:
|
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
17
|
npx granola-toolkit --help
|
|
18
|
+
npx granola-toolkit meeting --help
|
|
18
19
|
```
|
|
19
20
|
|
|
20
21
|
For local development:
|
|
@@ -27,7 +28,7 @@ vp install
|
|
|
27
28
|
|
|
28
29
|
## Run
|
|
29
30
|
|
|
30
|
-
Installed
|
|
31
|
+
Installed command:
|
|
31
32
|
|
|
32
33
|
```bash
|
|
33
34
|
granola --help
|
|
@@ -37,6 +38,8 @@ granola notes --help
|
|
|
37
38
|
granola transcripts --help
|
|
38
39
|
```
|
|
39
40
|
|
|
41
|
+
The published package exposes both `granola` and `granola-toolkit` as executable names.
|
|
42
|
+
|
|
40
43
|
Local build:
|
|
41
44
|
|
|
42
45
|
```bash
|
package/dist/cli.js
CHANGED
|
@@ -1908,9 +1908,9 @@ function splitCommand(argv) {
|
|
|
1908
1908
|
}
|
|
1909
1909
|
function rootHelp() {
|
|
1910
1910
|
const commandWidth = Math.max(...commands.map((command) => command.name.length));
|
|
1911
|
-
return `Granola
|
|
1911
|
+
return `Granola Toolkit
|
|
1912
1912
|
|
|
1913
|
-
|
|
1913
|
+
Work with Granola meetings, notes, and transcripts.
|
|
1914
1914
|
|
|
1915
1915
|
Usage:
|
|
1916
1916
|
granola <command> [options]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "granola-toolkit",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.15.0",
|
|
4
|
+
"description": "Toolkit for exporting and working with Granola meetings, notes, and transcripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
7
7
|
"granola",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"url": "git+https://github.com/kkarimi/granola-toolkit.git"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
|
-
"granola": "dist/cli.js"
|
|
21
|
+
"granola": "dist/cli.js",
|
|
22
|
+
"granola-toolkit": "dist/cli.js"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
24
25
|
"README.md",
|