Hi everyone, I am having a little trouble with kot...
# javascript
a
Hi everyone, I am having a little trouble with kotlin/js. I am trying to use decentraland sdk dependencies but decentraland doesn't support yarn so far and I can't seem to find any documentation for changing the package manager from yarn to npm for kotlin/js. Can someone guide me a little/redirect me to the link that helps?
r
Seemst to me
decentraland
is a command line tool for the sdk. And you probably want to use the sdk itself. Perhaps you should add dependencies from
@dcl/
namespace (e.g.
@dcl/ecs-scene-utils
).
a
I am using these dependencies
Copy code
implementation(npm("@dcl/ecs-scene-utils", "latest"))
    implementation(npm("decentraland", ">3.12.3"))
    implementation(npm("decentraland-builder-scripts", "latest"))
    implementation(npm("decentraland-ecs", "latest"))

    implementation(devNpm("decentraland-ecs", "latest"))
    implementation(devNpm("@dcl/eslint-config", "^1.0.1"))
r
don't add
"decentraland"
- it's a tool not a library
👍🏼 1
a
Thank you so much! I was being dumb and I see it now 😅