Skip to content

Commit

Permalink
Merge pull request #994 from mikepenz/feature/991
Browse files Browse the repository at this point in the history
Enhance README for `exportVariant` API
  • Loading branch information
mikepenz authored May 30, 2024
2 parents 2e3e6d8 + c3ad8c1 commit fd71cfb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,21 @@ Find a sample application as the `app-desktop` module. It showcases the usage to
### Generate Dependency Information

```bash
./gradlew app-desktop:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources/
./gradlew :app-desktop:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources/

# Filter exported definition by variant by passing `-PaboutLibraries.exportVariant==<VARIANT>`
./gradlew :app-wasm:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources/ -PaboutLibraries.exportVariant=wasmJs
./gradlew :app-wasm:exportLibraryDefinitions -PaboutLibraries.exportPath=src/main/resources/ -PaboutLibraries.exportVariant=jvm
```

### Run Desktop app
### Run Demo app(s)

```
# JVM Desktop app
./gradlew :app-desktop:run
# WASM Web app
./gradlew :app-wasm:run
```

### Screenshot
Expand Down

0 comments on commit fd71cfb

Please sign in to comment.