1
1
group ' org.example'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
+ // NOTE: The plugins below have been declared in the top-level gradle file.
5
+ // For some reason, declaring them here breaks the build. It is likely that
6
+ // this issue will be resolved once the plugins become more stable.
7
+
8
+ // Compile (i.e. transpile) kotlin to JS
9
+ // We cannot use kotlin2js, as we need some new functionality
4
10
apply plugin : ' kotlin-platform-js'
11
+ // Add npm, webpack and karma support
5
12
apply plugin : ' org.jetbrains.kotlin.frontend'
13
+ // Add dead code elimination for kotlin.js
6
14
apply plugin : ' kotlin-dce-js'
7
15
8
16
repositories {
@@ -21,8 +29,15 @@ compileKotlin2Js {
21
29
22
30
dependencies {
23
31
compile " org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version "
32
+
33
+ // Since we render HTML directly, we use kotlinx-html-js. There is also
34
+ // a server-side implementation to render static HTML. For highly dynamic
35
+ // though it makes more sense to use a framework like React or CycleJS.
24
36
compile " org.jetbrains.kotlinx:kotlinx-html-js:0.6.4"
25
37
38
+ // Note "implement" instead of "compile" for dependencies to
39
+ // platform-common projects. This is only provided by kotlin-platform-
40
+ // common, but not by kotlin2js!
26
41
implement project(" :domain" )
27
42
}
28
43
@@ -33,16 +48,25 @@ kotlin {
33
48
}
34
49
35
50
kotlinFrontend {
51
+ // Generate a package.json and install dependencies during build
36
52
npm {
37
53
dependency " lodash"
38
54
}
39
55
56
+ // Basic webpack configuration. More config goes in webpack.config.d
40
57
webpackBundle {
41
58
bundleName = " main"
42
59
}
43
60
61
+ // This is where you switch on minification. Regardless, kotlin-dce
62
+ // will always run.
44
63
define " PRODUCTION" , false
45
64
}
46
65
47
- // Run DCE on kotlin.js before building the final bundle
66
+ // Run DCE on kotlin.js before building the final bundle. Sadly, this
67
+ // dependency is not set automatically by kotlin-dce-js, so we have to
68
+ // add it. If we leave this out, the minified kotlin.js is generated
69
+ // too late and we end up with:
70
+ // - failing builds from a clean state
71
+ // - an outdated min/kotlin.js in incremental builds
48
72
bundle. dependsOn runDceKotlinJs
0 commit comments