-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
2,651 additions
and
4,041 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,42 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request_review: | ||
types: [submitted] | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ macos-latest, ubuntu-latest ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2.3.1 | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }} | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Test | ||
run: | | ||
./gradlew check | ||
- name: Upload Reports | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Test-Reports | ||
path: build/reports | ||
if: always() |
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,5 +1,6 @@ | ||
/build | ||
local.properties | ||
# Project exclude paths | ||
.gradle | ||
build | ||
.idea | ||
**yarn.lock | ||
kotlin-js-store | ||
local.properties |
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 |
---|---|---|
@@ -1,16 +1,3 @@ | ||
# Kotlin Multiplatform Wizard | ||
|
||
[![](https://raw.githubusercontent.com/terrakok/kmp-web-wizard/master/img/img.png)](https://terrakok.github.io/kmp-web-wizard/) | ||
|
||
This is JB hackathon project. | ||
Try it out [here](https://terrakok.github.io/kmp-web-wizard/) | ||
|
||
It is a fun project with bleeding-edge technologies: Kotlin JS + Compose for Web. | ||
|
||
If you see some problems (especially with CSS 😅) or want to add some cool feature PR is welcome! :) | ||
|
||
Team: | ||
[@terrakok](https://github.com/terrakok) | ||
[@vkormushkin](https://github.com/vkormushkin) | ||
[@ALD110](https://github.com/ALD110) | ||
[@atyrin](https://github.com/atyrin) | ||
# KMP Web Wizard | ||
|
||
[![](https://raw.githubusercontent.com/terrakok/kmp-web-wizard/master/img/page-screenshot.png)](https://terrakok.github.io/kmp-web-wizard/) |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" | ||
org.gradle.caching=true | ||
org.gradle.configuration-cache=true | ||
kotlin.code.style=official | ||
kotlin.mpp.stability.nowarn=true | ||
kotlin.js.compiler=ir |
Binary file not shown.
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,2 @@ | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") | ||
} | ||
} | ||
rootProject.name = "kmp-web-wizard" | ||
rootProject.name = "kotlin-multiplatform-wizard" | ||
|
18 changes: 0 additions & 18 deletions
18
src/commonMain/kotlin/org/jetbrains/webwiz/generator/files/ApplicationKt.kt
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
src/commonMain/kotlin/org/jetbrains/webwiz/generator/files/Gitignore.kt
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
src/commonMain/kotlin/org/jetbrains/webwiz/generator/files/GradleProperties.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.