Closed MadMaxMcKinney closed 2 years ago
I was getting the same issue as @MadMaxMcKinney above after updating my dependencies.
It seems it was related to how the plugin was fetching the cached Dribbble shots. Which is why you can get it to go through on a fresh install or after removing the cache folder.
After some digging, I found the culprit under createFileNode.js
and updated these lines from:
if (cacheMediaData) {
fileNodeID = cacheMediaData.fileNodeID
touchNode({
nodeId: cacheMediaData.fileNodeID,
})
}
to
if (cacheMediaData) {
fileNodeID = cacheMediaData.fileNodeID;
touchNode({
id: cacheMediaData.fileNodeID,
internal: {
type: "DribbbleShot"
}
});
}
and that seemed to solve the issue in my build. Hope that helps. I've also opened a PR with those changes.
Can we get this PR merged? I am waiting for this fix as well.
Can we get this PR merged? I am waiting for this fix as well.
Merged, sorry was busy these recent months.
Did an upgrade today and got this error, although I think I managed to build successfully once after upgrading everything and now I just get this:
Here are my packages as well: