It's not a big deal, but Denoify currently fails to detect/transform imports with the following structure:
import x, * as xs from "..."
This is easily fixed by doing:
import { default as x } from "..."
import * as xs from "..."
But I think it should be considered a bug anyway.
It's not a big deal, but Denoify currently fails to detect/transform imports with the following structure:
This is easily fixed by doing:
But I think it should be considered a bug anyway.