stoeffel / elm-verify-examples

BSD 3-Clause "New" or "Revised" License
167 stars 14 forks source link

Add support for Windows #115

Closed kageurufu closed 7 months ago

kageurufu commented 7 months ago

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

stoeffel commented 7 months ago

forgot to click merge