Nikky

Results 52 comments of Nikky

have you tried all the way back to 1.6.0 ?

i would suggest kotlin-logging, not that there is much to replace.. have a look at my port: https://github.com/NikkyAI/pentagame/tree/a0311c68ade0dc768a539c6e8da6a8901682aa92/shared/src/commonMain/kotlin/com/github/nwillc/ksvg and the Character.isUpperCase code here https://github.com/NikkyAI/pentagame/blob/ca4215cdade3e9f8b3be5519365620952dd4c9bd/shared/src/jsMain/kotlin/isUpperCase.kt

i assume with js specific code you mean the logging? it looks like it will work but i think it will not show the original file location / line numbers...

i can look into that also have similar problems of not knowing how to run tests in the browser

seems like this is breaking things.. https://stackoverflow.com/questions/51475050/spaces-in-test-method-names-when-targeting-multiplatform TL;DR: cannot have spaces in testnames in commonTest because it cannot compile to js

after fixing all the testnames with `@JsName` these errors are left over here jvm and js seem to sort `x1`, `x2`, `y1`, `y2` differently https://github.com/nwillc/ksvg/blob/72402ec00c1f4c33ec4f2d5f01335ef12000d207/src/commonTest/kotlin/com/github/nwillc/ksvg/elements/LINETest.kt#L48 `IllegalArgumentException: Value (10) is not...

i am still experimenting around with the api, but i propose such a API for registering output mappings and using them creating references in the surrounding workflow block or such...

took me a while to get the API close to the one you lined out and make detekt and ktlint and CI happy, but PR #432 is as ready as...

**one of** the issue ended up being that we had a `-` in our project name so i suppose.. please add sanitation to things like these, auto replace invalid characters...

my current temporary solution for handling etags is: ``` fun download(): File { val cacheFile = directories.cacheHome.resolve("latest.jar") val etagFile = cacheFile.parentFile.resolve("${cacheFile.name}.etag.txt") val url = "fill-me-in" val (request, response, result) =...