Package.json for Bun action
Could you share what kind of package.json would solve your issue. Opening the whole package.json is too much of a security issue on cloud at the very least
5 Replies
Unknown User•14mo ago
Message Not Public
Sign In & Join Server To View
{ "dependencies": { "@fonoster/sdk": "^0.3.24" } }Is exactly the package.json that we generate using the imports. Are you sure you do not get the same error by doing bun install with that package.json ? you would need to uncomment the first line though but yeah we cannot make the full package.json editable but we can make the dependencies settable by hand if necessary
Unknown User•14mo ago
Message Not Public
Sign In & Join Server To View
I ran into this today after updating (was working before update), I saw my Bun code had a mix of
import
and require
, but changing all to import
like so gets the same error:
Works fine via Script Editor test button, but on Deploy runs into that error@base_gravy @devessier fixed on latest