I've setup a project with npm and Vue.JS and when ...
# javascript
z
I've setup a project with npm and Vue.JS and when I try to import my code using
require("path/to/mykotlinlib-js")
then I get "These dependencies were not found: kotlin in path/to/mykotlinlib.js", and also such an error about klogging as I'm trying to use the KLogging library for Kotlin.
a
Well, did you add
kotlin
to your
package.json
dependencies
? I.e. does
require('kotlin')
work?