-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade deps and add other proto clients (#223)
This upgrades the dependencies, removes renovate (since all deps are wider ranges) and adds other service clients
- Loading branch information
Showing
23 changed files
with
887 additions
and
234 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
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
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 |
---|---|---|
|
@@ -9,4 +9,6 @@ pubspec.lock | |
external/ | ||
|
||
renovate.json | ||
.releaserc.json | ||
analysis_options.yaml | ||
justfile |
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
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ analyzer: | |
- lib/src/grpc/generated | ||
- external/ | ||
- example/ | ||
- tool/ |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: v1 | ||
managed: | ||
enabled: true | ||
plugins: | ||
- plugin: dart | ||
out: lib/src/grpc/generated | ||
opt: grpc |
Submodule googleapis
deleted from
6782d0
Submodule grpc-gateway
deleted from
8abb8b
Submodule protobuf
deleted from
39f763
Submodule protoc-gen-validate
deleted from
4966ec
Submodule zitadel
deleted from
057ac9
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
proto_dir := "./lib/src/grpc/generated" | ||
|
||
default: clean generate-grpc | ||
|
||
clean: | ||
@rm -rf {{proto_dir}} | ||
|
||
generate-grpc: && generate-barrel-files | ||
buf generate https://github.com/zitadel/zitadel.git --path ./proto/zitadel --include-imports --include-wkt | ||
|
||
generate-barrel-files: | ||
dart tool/barrel_file_generator.dart | ||
|
||
install-tools: | ||
dart pub global activate protoc_plugin |
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
Oops, something went wrong.