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
{{ message }}
This repository was archived by the owner on Mar 11, 2024. It is now read-only.
parseImports currently tries to parse the file names from error messages. It would be much more reliable to use the import callback the compiler provides:
compilerStandard(json, function (path) { ...})
The function will need to return either { error: "Error message" } or { contents: "<file contents>" }.
parseImportscurrently tries to parse the file names from error messages. It would be much more reliable to use the import callback the compiler provides:compilerStandard(json, function (path) { ...})The function will need to return either
{ error: "Error message" }or{ contents: "<file contents>" }.