kotlin-frontend-plugin
kotlin-frontend-plugin copied to clipboard
Gradle Kotlin (http://kotlinlang.org) plugin for frontend development
The most continous integrations and / or its agents runs under the root user. Chrome headless for example needs the --no-sandbox when he's started under root. I will do a...
In the docs there is a note that tasks for running the tests are created, but I do not see how to configure them to actually run the tests. The...
In kotlin multiplatform project for mobile (Android/iOS) when I add `org.jetbrains.kotlin.frontend` plugin like this ```gradle plugins { id ("kotlin-multiplatform") version "1.3.20-eap-100" id ("org.jetbrains.kotlin.frontend") version "0.0.44" id ("com.android.application") } ``` build...
The creation of the Karma tasks depends on the existence of the "compileTestKotlin2Js". In MPP projects this is now called "compileTestKotlinJs". So Karma tasks are not created.
Currently, if you try to use the plugin without node installed, the `npm-install` task fails. Unless you have `downloadNodeJsVersion = "latest"`. It would be nice to either make downloading the...
In the new-mpp example when i execute ./gradlew build, the resulting package.json looks like. ``` { "name": "new-mpp", "version": "0.0.0", "description": "Here we have custom description", "main": "new-mpp", "dependencies": {...
This pull request changes the default behavior of the webpack bundler to switch it's mode based on if you're running the dev server or building the bundle. I removed the...