Make canonical use file:// prefix

master
Garrett Mills 4 years ago
parent 59975830e7
commit 48ff05b12b
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -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 }

Loading…
Cancel
Save