Apologies if this isn't the right place to ask suc...
# javascript
s
Apologies if this isn't the right place to ask such questions, but does anyone know what the release schedule is for the kotlin-wrappers projects? In particular, I'm looking for a version of kotlin-redux with support for Kotlin 1.3.0, committed 22 days ago, but doesn't appear to have been released to npmjs.org yet. https://github.com/JetBrains/kotlin-wrappers/tree/master/kotlin-redux
k
Doesn’t really answer your questions, but you can specify a commit from repository as a dependency in your package.json
s
Interesting. That likely solves the problem. So instead of
"@jetbrains/kotlin-redux": "^4.0.0-pre.58",
I'm trying:
"@jetbrains/kotlin-redux": "git@github.com:JetBrains/kotlin-wrappers.git",
However, I'm getting this error when running `npm install`:
17 silly fetchPackageMetaData error for @jetbrains/kotlin-redux@git+ssh://git@github.com/JetBrains/kotlin-wrappers.git premature close
I'm guessing I just need a different format for specifying the GitHub dependency.
k
You need to specify commit, I think
"@Lib": "<git+ssh://git@github.com:SomeRepo.git#CommitHash>",
s
I think it might be due to the fact that there's no
package.json
in the root of the Git repo (each sub-directory is it's on module).