File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
html/compose-compiler-integration Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,14 @@ fun build(
60
60
failureExpected : Boolean = false,
61
61
composeVersion : String ,
62
62
kotlinVersion : String ,
63
- vararg buildCmd : String = arrayOf("build", "jsNodeRun ")
63
+ vararg buildCmd : String = arrayOf("build", "jsNodeDevelopmentRun ")
64
64
) {
65
65
val isWin = System .getProperty(" os.name" ).startsWith(" Win" )
66
66
val arguments = buildCmd.toMutableList().also {
67
67
it.add(" -Pcompose.version=$composeVersion " )
68
68
it.add(" -Pkotlin.version=$kotlinVersion " )
69
+ it.add(" --stacktrace" )
70
+ it.add(" --info" )
69
71
}.toTypedArray()
70
72
71
73
val procBuilder = if (isWin) {
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ kotlin {
31
31
}
32
32
33
33
tasks.findByName(" jsBrowserProductionWebpack" )!! .mustRunAfter(" jsDevelopmentExecutableCompileSync" )
34
- tasks.findByName(" jsNodeRun " )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
34
+ tasks.findByName(" jsNodeDevelopmentRun " )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ kotlin {
31
31
32
32
33
33
tasks.findByName(" jsBrowserProductionWebpack" )!! .mustRunAfter(" jsDevelopmentExecutableCompileSync" )
34
- tasks.findByName(" jsNodeRun " )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
34
+ tasks.findByName(" jsNodeDevelopmentRun " )!! .mustRunAfter(" jsProductionExecutableCompileSync" )
You can’t perform that action at this time.
0 commit comments