kotlin-frontend-plugin icon indicating copy to clipboard operation
kotlin-frontend-plugin copied to clipboard

Gradle Kotlin (http://kotlinlang.org) plugin for frontend development

Results 86 kotlin-frontend-plugin issues
Sort by recently updated
recently updated
newest added

Copy-pasting Gradle/groovy examples to Gradle/kts does not seem to work clearly. It might be nice to have a `.kts` examples too for those who decided to use Gradle Script Kotlin.

Hi, I'm using the FrontendPlugin with Kotlin-Gradle-DSL. But when configuring the WebPack-Bundle, I have to do the following: ``` configure { ... bundle("webpack") { if (this is WebPackExtension) { //...

Hi, I think there are several problems with the custom webpack example project. When I try to run and view it in the browser I get: Uncaught ReferenceError: reset is...

Hi, How can I contribute to the project? Is there any guidelines?

documentation

In project: https://github.com/MarcinMoskala/KotlinAcademyApp I got: ``` webpack-internal:///146:145 [WDS] Warnings while compiling. msgWarnings @ webpack-internal:///146:145 webpack-internal:///146:148 /home/marcin/IdeaProjects/KotlinAcademyApp/common-client-js/build/node_modules/kotlin.js (Emitted value instead of an instance of Error) Cannot find SourceMap 'kotlin.js.map': Error: Can't...

Hi, when I try to build I get this error message, I tried multiple configurations of gradle I found online, but nothing works... this is the message: * What went...

bug

When I tried to run the build with `compileKotlin2Js.kotlinOptions.moduleKind` undefined, the bundle does not seem to contain either kotlin standard libraries or other dependencies. Changing it to `commonjs` solved problem....

enhancement
webpack

It'd be great if there was support for adding additional karma files. Something like: ```groovy karma { files = [pattern: "resources/main/tzdata-latest/**", watched: false, served: true, included: false] } ``` This...

enhancement
karma

For libraries one would need to generate `package.json` but don't need to install modules (discussed in issue #8)

enhancement
npm

Hello! I was beginning to use this plugin in my project, and I wanted to configure the `npm` task so I could possibly have it install to a separate directory....