Closed kageurufu closed 7 months ago
elmPathToModuleName assumes a path separator of /, but windows uses \.
elmPathToModuleName
/
\
This changes to using .split(path.sep).join(".") instead of a regexp replace, so that any platform will use the proper path separator
.split(path.sep).join(".")
forgot to click merge
elmPathToModuleName
assumes a path separator of/
, but windows uses\
.This changes to using
.split(path.sep).join(".")
instead of a regexp replace, so that any platform will use the proper path separator