Results 83 comments of Myroslav

If you just want to keep the JARs in the repository for the purpose of vendoring, you don't have to stick to Ant. Maven [actually can do it](https://stackoverflow.com/a/7623805) in a...

The sorry state of the NPM ecosystem was not caused by automatic dependency management. I believe the two main causes were the lack of a good standard library in Javascript,...

I think the psychology shouldn't matter at all. When I decide whether to add a new dependency to my project, I consider the objective benefits of having it (ready-made functionality,...

Looks like the new test stage has timed out. Try increasing the time limit for that stage.

I get a NoClassDefFoundError immediately after starting up IntelliJ. Stack trace: ``` java.lang.NoClassDefFoundError: com/virtuslab/contextbuddy/ContextBuddy$ at com.virtuslab.contextbuddy.StateManager.(StateManager.scala:12) at com.virtuslab.contextbuddy.StateManager$.$anonfun$apply$1(StateManager.scala:27) at scala.util.Try$.apply(Try.scala:213) at com.virtuslab.contextbuddy.StateManager$.apply(StateManager.scala:27) at com.virtuslab.contextbuddy.ContextBuddyComponent.projectOpened(ContextBuddyComponent.scala:31) ``` IntelliJ 2020.1, Java 11 on...

Here's another example of a similar commit: https://github.com/JetBrains/intellij-scala/commit/2c9c7007f522a4de77f376a24c565ae0bcb532aa However, this commit is more complicated, as it involves merging two files into one with a different name, and some refactoring.

The premise of this PR is completely wrong. First, `Qm` isn't the right prefix for Base58. In fact, no valid Multibase string can start with `Q`. See [specification](https://github.com/multiformats/multibase?tab=readme-ov-file#reserved-terms), [implementation](https://github.com/multiformats/java-multibase/blob/master/src/main/java/io/ipfs/multibase/Multibase.java). The...

I am writing my own VS Code extension (which isn't published yet), and I have found that there is no standard way to do it with Scala.js and SBT. I...

Sorry for taking your time, but I'm really interested in merging this, so that I may better understand any possible problems with my approach. I will be happy to answer...

The complete build output is assembled in the directory `target/scala-2.13/scalajs-bundler/main`. (I have added a new command for doing that.) When I run `vsce package` in that directory, an installable VSIX...