FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
compose-multiplatform/examples/validateExamplesWithJs.sh at master · JetBrains/compose-multiplatform · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JetBrains
/
compose-multiplatform
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
19.3k
Code
Issues
0
Pull requests
30
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
compose-multiplatform
/
examples
/
validateExamplesWithJs.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
25 lines (19 loc) · 637 Bytes
Breadcrumbs
compose-multiplatform
/
examples
/
validateExamplesWithJs.sh
Copy path
File metadata and controls
executable file
·
25 lines (19 loc) · 637 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!
/bin/bash
#
Script to build most of the examples, to verify if they can compile.
#
Example must be buildable with dev builds, so they should have dev maven repo set up.
set
-euo pipefail
if
[
"
$#
"
-ne
2 ]
;
then
echo
"
Specify Compose and Kotlin version. For example: ./validateExamplesWithJs.sh 1.1.1 1.6.10
"
exit
1
fi
COMPOSE_VERSION=
$1
KOTLIN_VERSION=
$2
runGradle
() {
pushd
$1
./gradlew
$2
-Pcompose.version=
$COMPOSE_VERSION
-Pkotlin.version=
$KOTLIN_VERSION
popd
}
runGradle html/compose-bird build
runGradle html/landing build
runGradle html/with-react build
runGradle imageviewer :webApp:wasmJsBrowserDistribution
Back
|
FazBrowse Home
|
New Git URL