Are you using any npm dependencies
# javascript
a
Are you using any npm dependencies
g
Yes, it looks like I need to clear npm or yarn cache in node_modules. I found that solution on the create-react-kotlin-app github readme here: https://github.com/JetBrains/create-react-kotlin-app#npm-start-or-yarn-start
I haven't tried it yet but I will be able to tonight
a
yeah. if you are, be careful of "^" in dependencies. its pretty much like + in gradle. also ensure you if youre using npm to lock the versions. yarn should do this for you automatically
g
I'm using yarn, I like to keep the ^ so it will increment my minor versions. Are you saying yarn doesnt do that?
a
Yarn autolocks based on versions in package.json. if you run yarn upgrade it will move the versions to next level based on range
Inspecting the yarn.lock will tell you what version it's using
g
Ok, good to know. I need to go through and do minor version upgrades since react 16.3 was released.