Skip to content

Commit b59d3cc

Browse files
committed
1.8.1
1 parent b0b2d6d commit b59d3cc

File tree

10 files changed

+28
-5077
lines changed

10 files changed

+28
-5077
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
all: download proto
1+
all: download proto build
22

33
proto-gen-from-docker:
44
docker build -t ts-protoc .
@@ -10,9 +10,15 @@ proto:
1010
protoc ./ion/proto/ion/ion.proto -I./ion --plugin=protoc-gen-ts=/usr/local/bin/protoc-gen-ts --js_out=import_style=commonjs,binary:./src/_library --ts_out=service=grpc-web:./src/_library
1111
protoc ./ion/proto/rtc/rtc.proto -I./ion --plugin=protoc-gen-ts=/usr/local/bin/protoc-gen-ts --js_out=import_style=commonjs,binary:./src/_library --ts_out=service=grpc-web:./src/_library
1212
protoc ./ion/apps/room/proto/room.proto -I./ion --plugin=protoc-gen-ts=/usr/local/bin/protoc-gen-ts --js_out=import_style=commonjs,binary:./src/_library --ts_out=service=grpc-web:./src/_library
13+
mkdir -p lib
14+
cp -rf ./src/_library lib
1315

1416
download:
1517
git clone https://github.com/pion/ion --depth=1
1618

1719
clean:
1820
rm -rf src/_library
21+
22+
build:
23+
npm run build
24+

package-lock.json

Lines changed: 6 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ion-sdk-js",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "A js sdk for ion-sfu or ion",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -47,11 +47,10 @@
4747
},
4848
"dependencies": {
4949
"@grpc/grpc-js": "^1.3.7",
50-
"@improbable-eng/grpc-web": "^0.14.0",
50+
"@improbable-eng/grpc-web": "^0.14.1",
5151
"browser-headers": "^0.4.1",
5252
"events": "^3.0.0",
5353
"google-protobuf": "^3.6.1",
54-
"protoc-gen-ts": "^0.4.0",
5554
"sdp-transform": "^2.14.0",
5655
"uuid": "^8.0.0",
5756
"webpack-cli": "^4.8.0"

0 commit comments

Comments
 (0)