Skip to content

Commit 2ad93fa

Browse files
fix: use protons instead of protobuf for native .proto to .ts (#141)
* fix: use protons instead of protobuf for native .proto to .ts Swaps protobufjs for protons so we can generate `.ts` from `.proto` that is browser friendly (e.g. uses bigints instead of long.js, etc) and isn't broken by default * ignore lockfile * fix lint Co-authored-by: Marin Petrunic <marin.petrunic@gmail.com>
1 parent 114e437 commit 2ad93fa

8 files changed

+44
-9944
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ yarn-error.log*
1616
lerna-debug.log*
1717
coverage/*
1818
package-lock.json
19+
yarn.lock

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
"test:browser": "npm run test -- -t browser -t webworker",
6363
"test:electron-main": "npm run test -- -t electron-main",
6464
"docs": "aegir docs",
65-
"prepublish": "npm run build",
66-
"proto:gen": "pbjs -t static-module -w es6 -r libp2p-noise -o ./src/proto/payload.js ./src/proto/payload.proto && pbts -o ./src/proto/payload.d.ts ./src/proto/payload.js"
65+
"proto:gen": "protons ./src/proto/payload.proto",
66+
"prepublish": "npm run build"
6767
},
6868
"dependencies": {
6969
"@libp2p/interfaces": "^1.3.14",
@@ -78,7 +78,7 @@
7878
"it-pair": "^2.0.2",
7979
"it-pb-stream": "^1.0.2",
8080
"it-pipe": "^2.0.3",
81-
"protobufjs": "^6.11.2",
81+
"protons-runtime": "^1.0.3",
8282
"uint8arraylist": "^1.4.0",
8383
"uint8arrays": "^3.0.0"
8484
},
@@ -89,6 +89,7 @@
8989
"benchmark": "^2.1.4",
9090
"events": "^3.3.0",
9191
"microtime": "^3.0.0",
92+
"protons": "^3.0.3",
9293
"mkdirp": "^1.0.4",
9394
"sinon": "^13.0.1",
9495
"util": "^0.12.4"

src/proto/payload.d.ts

-106
This file was deleted.

0 commit comments

Comments
 (0)