Make canonical use file:// prefix

This commit is contained in:
2020-09-05 09:42:10 -05:00
parent 59975830e7
commit 48ff05b12b

View File

@@ -132,6 +132,10 @@ export class Canonical<T> extends LifecycleUnit {
.substr(this.suffix.length)
.split('').reverse().join('')
if ( file_path.startsWith('/') ) {
file_path = `file://${file_path}`
}
this.make(Logging).debug(`Importing from: ${file_path}`)
const imported = await import(file_path)
return { canonical_name, original_name, imported }