├── .gitignore ├── LICENSE ├── README.md ├── examples ├── custom-webpack-config │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── index.html │ ├── settings.gradle │ ├── src │ │ ├── app.vue │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── main.kt │ │ └── styles.css │ └── webpack.config.js ├── frontend-only │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── package.json.d │ │ └── project.info │ ├── settings.gradle │ ├── src │ │ ├── main │ │ │ ├── kotlin │ │ │ │ └── test │ │ │ │ │ └── hello │ │ │ │ │ ├── Application.kt │ │ │ │ │ ├── HMR.kt │ │ │ │ │ ├── LinesPresenter.kt │ │ │ │ │ ├── LinesView.kt │ │ │ │ │ ├── MainApplication.kt │ │ │ │ │ ├── Presenter.kt │ │ │ │ │ ├── WebLinesView.kt │ │ │ │ │ └── main.kt │ │ │ └── web │ │ │ │ └── index.html │ │ └── test │ │ │ └── kotlin │ │ │ └── test │ │ │ └── TestLinesPresenter.kt │ └── webpack.config.d │ │ ├── css.js │ │ └── minify.js ├── full-stack-example │ ├── build.gradle │ ├── frontend │ │ ├── build.gradle │ │ ├── package.json.d │ │ │ └── project.info │ │ ├── src │ │ │ └── main │ │ │ │ ├── kotlin │ │ │ │ └── test │ │ │ │ │ └── hello │ │ │ │ │ ├── Application.kt │ │ │ │ │ ├── HMR.kt │ │ │ │ │ ├── LinesPresenter.kt │ │ │ │ │ ├── LinesView.kt │ │ │ │ │ ├── MainApplication.kt │ │ │ │ │ ├── Presenter.kt │ │ │ │ │ └── main.kt │ │ │ │ └── web │ │ │ │ ├── index.html │ │ │ │ └── test.css │ │ └── webpack.config.d │ │ │ ├── css.js │ │ │ └── minify.js │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── server-side │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── example │ │ │ │ └── fullstack │ │ │ │ └── server │ │ │ │ └── main.kt │ │ │ └── resources │ │ │ ├── application.conf │ │ │ └── logback.xml │ └── settings.gradle └── new-mpp │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── package.json.d │ └── project.info │ ├── settings.gradle │ └── src │ ├── commonMain │ └── kotlin │ │ └── sample │ │ └── Sample.kt │ ├── commonTest │ └── kotlin │ │ └── sample │ │ └── SampleTests.kt │ ├── jsMain │ └── kotlin │ │ └── sample │ │ └── SampleJs.kt │ ├── jsTest │ └── kotlin │ │ └── sample │ │ └── SampleTestsJS.kt │ ├── jvmMain │ ├── kotlin │ │ └── sample │ │ │ └── SampleJvm.kt │ └── resources │ │ ├── application.conf │ │ └── logback.xml │ └── jvmTest │ └── kotlin │ └── sample │ └── SampleTestsJVM.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kotlin-frontend ├── .idea │ └── runConfigurations │ │ └── All_tests.xml ├── build.gradle ├── gradle.properties ├── local.properties ├── settings.gradle └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── jetbrains │ │ │ └── kotlin │ │ │ └── gradle │ │ │ └── frontend │ │ │ ├── Bundler.kt │ │ │ ├── Dependency.kt │ │ │ ├── FrontendPlugin.kt │ │ │ ├── KotlinFrontendExtension.kt │ │ │ ├── KotlinNewMpp.kt │ │ │ ├── Launcher.kt │ │ │ ├── PackageManager.kt │ │ │ ├── SourceMaps.kt │ │ │ ├── config │ │ │ └── BundleConfig.kt │ │ │ ├── karma │ │ │ ├── KarmaConfigTask.kt │ │ │ ├── KarmaExtension.kt │ │ │ ├── KarmaLauncher.kt │ │ │ ├── KarmaStartStopTask.kt │ │ │ └── RunKarmaSingleTask.kt │ │ │ ├── ktor │ │ │ ├── KtorExtension.kt │ │ │ ├── KtorLauncher.kt │ │ │ └── KtorStartStopTask.kt │ │ │ ├── npm │ │ │ ├── GeneratePackagesJsonTask.kt │ │ │ ├── NpmDependenciesTask.kt │ │ │ ├── NpmExtension.kt │ │ │ ├── NpmIndexTask.kt │ │ │ ├── NpmInstallTask.kt │ │ │ ├── NpmPackageManager.kt │ │ │ └── UnpackGradleDependenciesTask.kt │ │ │ ├── rollup │ │ │ ├── GenerateRollupConfigTask.kt │ │ │ ├── RollupBundleTask.kt │ │ │ ├── RollupBundler.kt │ │ │ └── RollupExtension.kt │ │ │ ├── servers │ │ │ └── AbstractStartStopTask.kt │ │ │ ├── util │ │ │ ├── KotlinOutput.kt │ │ │ ├── LogTail.kt │ │ │ ├── MapMerge.kt │ │ │ ├── NodeJsDownloadTask.kt │ │ │ ├── Paths.kt │ │ │ ├── Runner.kt │ │ │ ├── Tasks.kt │ │ │ ├── URL.kt │ │ │ └── semver.kt │ │ │ └── webpack │ │ │ ├── GenerateWebPackConfigTask.kt │ │ │ ├── GenerateWebpackHelperTask.kt │ │ │ ├── WebPackBundleTask.kt │ │ │ ├── WebPackBundler.kt │ │ │ ├── WebPackExtension.kt │ │ │ ├── WebPackLauncher.kt │ │ │ └── WebPackRunTask.kt │ └── resources │ │ ├── META-INF │ │ └── gradle-plugins │ │ │ └── org.jetbrains.kotlin.frontend.properties │ │ └── kotlin │ │ └── webpack │ │ └── webpack-dev-server-launcher.js │ └── test │ └── kotlin │ └── org │ └── jetbrains │ └── kotlin │ └── gradle │ └── frontend │ ├── AbstractFrontendTest.kt │ ├── BuildScriptBuilder.kt │ ├── MergeMapsTest.kt │ ├── NewMppTest.kt │ ├── OutputStreamBufferTest.kt │ ├── SemverTest.kt │ ├── SimpleFrontendProjectTest.kt │ └── TestCustomNodePath.kt ├── settings.gradle └── webpack-hmr-api ├── build.gradle ├── gradle.properties ├── settings.gradle └── src └── main └── kotlin └── org └── webpack └── hmr └── HMR.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/README.md -------------------------------------------------------------------------------- /examples/custom-webpack-config/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/build.gradle -------------------------------------------------------------------------------- /examples/custom-webpack-config/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/gradle.properties -------------------------------------------------------------------------------- /examples/custom-webpack-config/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/custom-webpack-config/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/custom-webpack-config/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/gradlew -------------------------------------------------------------------------------- /examples/custom-webpack-config/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/gradlew.bat -------------------------------------------------------------------------------- /examples/custom-webpack-config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/index.html -------------------------------------------------------------------------------- /examples/custom-webpack-config/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'custom-webpack-config' 2 | -------------------------------------------------------------------------------- /examples/custom-webpack-config/src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/src/app.vue -------------------------------------------------------------------------------- /examples/custom-webpack-config/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /examples/custom-webpack-config/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/src/styles.css -------------------------------------------------------------------------------- /examples/custom-webpack-config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/custom-webpack-config/webpack.config.js -------------------------------------------------------------------------------- /examples/frontend-only/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/build.gradle -------------------------------------------------------------------------------- /examples/frontend-only/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/gradle.properties -------------------------------------------------------------------------------- /examples/frontend-only/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/frontend-only/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/frontend-only/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/gradlew -------------------------------------------------------------------------------- /examples/frontend-only/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/gradlew.bat -------------------------------------------------------------------------------- /examples/frontend-only/package.json.d/project.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/package.json.d/project.info -------------------------------------------------------------------------------- /examples/frontend-only/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'frontend-only' 2 | -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/Application.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/HMR.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/HMR.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/LinesPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/LinesPresenter.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/LinesView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/LinesView.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/MainApplication.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/Presenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/Presenter.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/WebLinesView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/WebLinesView.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/kotlin/test/hello/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/kotlin/test/hello/main.kt -------------------------------------------------------------------------------- /examples/frontend-only/src/main/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/main/web/index.html -------------------------------------------------------------------------------- /examples/frontend-only/src/test/kotlin/test/TestLinesPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/src/test/kotlin/test/TestLinesPresenter.kt -------------------------------------------------------------------------------- /examples/frontend-only/webpack.config.d/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/webpack.config.d/css.js -------------------------------------------------------------------------------- /examples/frontend-only/webpack.config.d/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/frontend-only/webpack.config.d/minify.js -------------------------------------------------------------------------------- /examples/full-stack-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/build.gradle -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/build.gradle -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/package.json.d/project.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/package.json.d/project.info -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/Application.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/HMR.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/HMR.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/LinesPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/LinesPresenter.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/LinesView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/LinesView.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/MainApplication.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/Presenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/Presenter.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/kotlin/test/hello/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/kotlin/test/hello/main.kt -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/src/main/web/index.html -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/src/main/web/test.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: aliceblue; 3 | } -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/webpack.config.d/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/webpack.config.d/css.js -------------------------------------------------------------------------------- /examples/full-stack-example/frontend/webpack.config.d/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/frontend/webpack.config.d/minify.js -------------------------------------------------------------------------------- /examples/full-stack-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/gradle.properties -------------------------------------------------------------------------------- /examples/full-stack-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/full-stack-example/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/full-stack-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/gradlew -------------------------------------------------------------------------------- /examples/full-stack-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/gradlew.bat -------------------------------------------------------------------------------- /examples/full-stack-example/server-side/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/server-side/build.gradle -------------------------------------------------------------------------------- /examples/full-stack-example/server-side/src/main/kotlin/org/example/fullstack/server/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/server-side/src/main/kotlin/org/example/fullstack/server/main.kt -------------------------------------------------------------------------------- /examples/full-stack-example/server-side/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/server-side/src/main/resources/application.conf -------------------------------------------------------------------------------- /examples/full-stack-example/server-side/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/server-side/src/main/resources/logback.xml -------------------------------------------------------------------------------- /examples/full-stack-example/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/full-stack-example/settings.gradle -------------------------------------------------------------------------------- /examples/new-mpp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/build.gradle -------------------------------------------------------------------------------- /examples/new-mpp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/new-mpp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/new-mpp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/gradlew -------------------------------------------------------------------------------- /examples/new-mpp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/gradlew.bat -------------------------------------------------------------------------------- /examples/new-mpp/package.json.d/project.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/package.json.d/project.info -------------------------------------------------------------------------------- /examples/new-mpp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/settings.gradle -------------------------------------------------------------------------------- /examples/new-mpp/src/commonMain/kotlin/sample/Sample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/commonMain/kotlin/sample/Sample.kt -------------------------------------------------------------------------------- /examples/new-mpp/src/commonTest/kotlin/sample/SampleTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/commonTest/kotlin/sample/SampleTests.kt -------------------------------------------------------------------------------- /examples/new-mpp/src/jsMain/kotlin/sample/SampleJs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jsMain/kotlin/sample/SampleJs.kt -------------------------------------------------------------------------------- /examples/new-mpp/src/jsTest/kotlin/sample/SampleTestsJS.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jsTest/kotlin/sample/SampleTestsJS.kt -------------------------------------------------------------------------------- /examples/new-mpp/src/jvmMain/kotlin/sample/SampleJvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jvmMain/kotlin/sample/SampleJvm.kt -------------------------------------------------------------------------------- /examples/new-mpp/src/jvmMain/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jvmMain/resources/application.conf -------------------------------------------------------------------------------- /examples/new-mpp/src/jvmMain/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jvmMain/resources/logback.xml -------------------------------------------------------------------------------- /examples/new-mpp/src/jvmTest/kotlin/sample/SampleTestsJVM.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/examples/new-mpp/src/jvmTest/kotlin/sample/SampleTestsJVM.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kotlin-frontend/.idea/runConfigurations/All_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/.idea/runConfigurations/All_tests.xml -------------------------------------------------------------------------------- /kotlin-frontend/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/build.gradle -------------------------------------------------------------------------------- /kotlin-frontend/gradle.properties: -------------------------------------------------------------------------------- 1 | version=0.0.46-SNAPSHOT -------------------------------------------------------------------------------- /kotlin-frontend/local.properties: -------------------------------------------------------------------------------- 1 | kotlin.incremental=true 2 | -------------------------------------------------------------------------------- /kotlin-frontend/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kotlin-frontend' 2 | -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Bundler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Bundler.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Dependency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Dependency.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/FrontendPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/FrontendPlugin.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/KotlinFrontendExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/KotlinFrontendExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/KotlinNewMpp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/KotlinNewMpp.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Launcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/Launcher.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/PackageManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/PackageManager.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/SourceMaps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/SourceMaps.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/config/BundleConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/config/BundleConfig.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaConfigTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaConfigTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaLauncher.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaStartStopTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/KarmaStartStopTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/RunKarmaSingleTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/karma/RunKarmaSingleTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorLauncher.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorStartStopTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/ktor/KtorStartStopTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/GeneratePackagesJsonTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/GeneratePackagesJsonTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmDependenciesTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmDependenciesTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmIndexTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmIndexTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmInstallTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmInstallTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmPackageManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/NpmPackageManager.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/UnpackGradleDependenciesTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/npm/UnpackGradleDependenciesTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/GenerateRollupConfigTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/GenerateRollupConfigTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupBundleTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupBundleTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupBundler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupBundler.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/rollup/RollupExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/servers/AbstractStartStopTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/servers/AbstractStartStopTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/KotlinOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/KotlinOutput.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/LogTail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/LogTail.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/MapMerge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/MapMerge.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/NodeJsDownloadTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/NodeJsDownloadTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Paths.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Paths.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Runner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Runner.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Tasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/Tasks.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/URL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/URL.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/semver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/util/semver.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/GenerateWebPackConfigTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/GenerateWebPackConfigTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/GenerateWebpackHelperTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/GenerateWebpackHelperTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackBundleTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackBundleTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackBundler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackBundler.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackExtension.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackLauncher.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackRunTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/kotlin/org/jetbrains/kotlin/gradle/frontend/webpack/WebPackRunTask.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/main/resources/META-INF/gradle-plugins/org.jetbrains.kotlin.frontend.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/resources/META-INF/gradle-plugins/org.jetbrains.kotlin.frontend.properties -------------------------------------------------------------------------------- /kotlin-frontend/src/main/resources/kotlin/webpack/webpack-dev-server-launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/main/resources/kotlin/webpack/webpack-dev-server-launcher.js -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/AbstractFrontendTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/AbstractFrontendTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/BuildScriptBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/BuildScriptBuilder.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/MergeMapsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/MergeMapsTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/NewMppTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/NewMppTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/OutputStreamBufferTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/OutputStreamBufferTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/SemverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/SemverTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/SimpleFrontendProjectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/SimpleFrontendProjectTest.kt -------------------------------------------------------------------------------- /kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/TestCustomNodePath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/TestCustomNodePath.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/settings.gradle -------------------------------------------------------------------------------- /webpack-hmr-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/webpack-hmr-api/build.gradle -------------------------------------------------------------------------------- /webpack-hmr-api/gradle.properties: -------------------------------------------------------------------------------- 1 | version=0.0.8 -------------------------------------------------------------------------------- /webpack-hmr-api/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'webpack-hmr-api' 2 | 3 | -------------------------------------------------------------------------------- /webpack-hmr-api/src/main/kotlin/org/webpack/hmr/HMR.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/kotlin-frontend-plugin/HEAD/webpack-hmr-api/src/main/kotlin/org/webpack/hmr/HMR.kt --------------------------------------------------------------------------------