We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e8f874 commit 16ed715Copy full SHA for 16ed715
2 files changed
.gitignore
@@ -38,3 +38,6 @@ examples/javascript/package-lock.json
38
39
# IntelliJ
40
.idea/
41
+
42
+# VSCode
43
+.vscode/
libs/gl-sdk/.tasks.yml
@@ -84,6 +84,16 @@ tasks:
84
--language ruby \
85
--out-dir ./libs/gl-sdk/bindings
86
87
+ bindings-typescript:
88
+ desc: "Generate Typescript bindings"
89
+ dir: "{{.TASKFILE_DIR}}/../gl-sdk-napi"
90
+ deps:
91
+ - build
92
+ cmds:
93
+ - |
94
+ npm install
95
+ npm run build
96
97
bindings-all:
98
desc: "Generate all language bindings"
99
dir: "{{.TASKFILE_DIR}}/../.."
@@ -92,6 +102,7 @@ tasks:
102
- bindings-kotlin
103
- bindings-swift
104
- bindings-ruby
105
+ - bindings-typescript
106
107
package-python:
108
desc: "Build Python wheel package"
0 commit comments