File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,15 @@ kotlinFrontend {
5959 devDependency(" karma" , " 3.1.4" )
6060 devDependency(" karma-chrome-launcher" , " 2.2.0" )
6161 }
62+ // webpackBundle {
63+ // bundleName = "main"
64+ // contentPath = file('src/main/web')
65+ // mode = "development"
66+ // }
67+ // karma {
68+ // plugins = ["karma-chrome-launcher"]
69+ // browsers = ["ChromeHeadless"]
70+ // }
6271}
6372
6473compileKotlin2Js {
@@ -83,3 +92,9 @@ task copyResourcesForTests(type: Copy) {
8392 into file(buildDir. path + " /js-tests/" )
8493}
8594
95+ // afterEvaluate {
96+ // tasks.getByName("webpack-bundle") { dependsOn(copyResources) }
97+ // tasks.getByName("webpack-run") { dependsOn(copyResources) }
98+ // tasks.getByName("test") { dependsOn(copyResources, copyResourcesForTests) }
99+ // tasks.getByName("karma-start") { dependsOn(copyResources, copyResourcesForTests) }
100+ // }
You can’t perform that action at this time.
0 commit comments