Busy playing around with Fritz2 after watching the...
# javascript
n
Busy playing around with Fritz2 after watching the very impressive VKUG presentation (

https://youtu.be/s_C3uhThzgk

). With a new Kotlin JS project I discovered that the continuous deployment feature breaks when adding a new Kotlin JS library/framework (eg
implementation("io.fritz2:fritz2-core-js:0.4")
):
Copy code
Error: ENOENT: no such file or directory, open '/home/napperley/idea_projects/kotlinjs-test/build/js/packages/kotlinjs-test/kotlin/kotlinjs-test.js'
A bit annoying since it means the web page has to be manually refreshed in a web browser (eg Brave) every time code changes are made. Wondering if the continuous deployment feature can't handle pure Kotlin JS libraries/frameworks which don't rely on NPM ( https://github.com/jwstegemann/fritz2 ) 😆 .
i
I think, it can be related with https://youtrack.jetbrains.com/issue/KT-32273
👍 1
n
Important to note that some things like doing changes to routing using Fritz2 ( https://docs.fritz2.dev/Routing.html ) can cause the continuous deployment feature to break completely, which then means the server has to be manually restarted.