You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry for the extension change, can you please update the lock file? i changed it to .mjs to fix conflict entry name and i made a mistake of purging the build cache of < v116, now all the builds have been stored into CF R2/works kv as immutable.
after using deno cache main.ts --reload --lock-write I got:
./main_test.ts (uncaught error)
error: SyntaxError: The requested module '/v117/@kwsites/[email protected]/X-ZHN2LzAuMTczLjA/deno/file-exists.mjs' does not provide an export named 'exists'
at <anonymous> (https://esm.sh/v117/[email protected]/X-ZC9Aa3dzaXRlcy9maWxlLWV4aXN0c0AxLjEuMQpkc3YvMC4xNzMuMA/deno/simple-git.bundle.mjs:2:163)
This error was not caught from a test and caused the test runner to fail on the referenced module.
It most likely originated from a dangling promise, event/timeout handler or top-level code.
when running the module, the .mjs extension seems to have broken the deps I declared for simple-git:
just checked, the `file-exists` index module(cjs) has a non-standard export syntax which can not be parsed correctly by the `cjs-lexer`, i will fix this (by adding it to the `requireModeAllowList` or fixing the cjs-lexer)
Problem
My deno program now fails to build in CI when it pulls down fresh modules instead of using the cache on my machine. I think the reason I get
is because a week ago my
resolved to
and now it resolves to
Note the difference between the file extensions, js -> mjs. This causes a failure to match the lock file.
I am also seeing this with a separate import:
Additional info
The text was updated successfully, but these errors were encountered: