-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port the code generator to TypeScript (#159)
- Loading branch information
Showing
274 changed files
with
20,586 additions
and
6,991 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,31 +8,17 @@ jobs: | |
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup-go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
- uses: bufbuild/[email protected] | ||
with: | ||
version: 1.1.0 | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cache | ||
.cache | ||
~/.tmp | ||
.tmp | ||
key: ${{ runner.os }}-protobuf-es-ci-${{ hashFiles('Makefile') }} | ||
restore-keys: | | ||
${{ runner.os }}-protobuf-es-ci- | ||
- name: make-ci-generate | ||
run: bash make/scripts/checknodiffgenerated.bash make ci-generate | ||
- name: make-format | ||
run: bash make/scripts/checknodiffgenerated.bash make format | ||
- name: make-build | ||
run: make build | ||
- name: make-lint | ||
run: make lint | ||
- name: make-test | ||
run: make test | ||
- name: make-bench-codesize | ||
run: make bench-codesize | ||
- name: make | ||
run: make all checkdiff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
node_modules | ||
/packages/*/dist | ||
/packages/protobuf-test/descriptorset.bin | ||
/testdata/gen/**/*.js | ||
/testdata/gen/**/*.ts | ||
/testdata/gen/**/**.d.ts | ||
/packages/protoc-gen-es*/bin/protoc-gen-es* | ||
/packages/*/dist | ||
/packages/protobuf-test/descriptorset.bin | ||
/.cache | ||
/.tmp |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/packages/*/src/gen | ||
/packages/*/dist | ||
/packages/*/bin | ||
/node_modules | ||
/.cache | ||
/packages/*/bin | ||
/packages/*/dist | ||
/packages/*/src/gen | ||
/packages/protobuf/src/google | ||
/.tmp |
Oops, something went wrong.