-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Expose grpc dependencies as API. * Added documentation to the library. * Replace version management with version catalogs. * Update kotlin and agp. * Update to ios 16.4. Apply kotlin 1.9.0 to ios target. * Added docker tests for javascript. * Unify ios/jvm + js. Lib. * More unification. * JS serialization tests pass. * JVM serialization tests pass. * Remove unnecessary js files. * Update to new kotlin source set setup. * Made all tests run * update readme. * Updated dependencies. Removed unnecessary dependencies. * Fix js tests. * Bump to version 0.4.0
- Loading branch information
Showing
120 changed files
with
2,553 additions
and
3,285 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**/build | ||
**/.gradle | ||
**/.idea | ||
/docker | ||
kotlin-js-store/yarn.lock | ||
.gitignore | ||
jitpack.yml | ||
LICENSE.md | ||
local.properties | ||
readme.md | ||
example | ||
test-outputs |
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 |
---|---|---|
|
@@ -31,4 +31,5 @@ build | |
generated | ||
local.properties | ||
*.podspec | ||
*.lock | ||
*.lock | ||
test-outputs |
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,11 @@ | ||
FROM markhobson/maven-chrome:jdk-17 | ||
|
||
WORKDIR /tests | ||
COPY gradlew gradlew | ||
COPY gradle gradle | ||
RUN ./gradlew --version | ||
|
||
COPY . . | ||
|
||
ENTRYPOINT ["./gradlew"] | ||
RUN ./gradlew :grpc-mp-test:jsTestClasses |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
create("libs") { | ||
from(files("../gradle/libs.versions.toml")) | ||
} | ||
} | ||
} | ||
|
||
include(":test-server") |
Oops, something went wrong.