grunt-template-jasmine-requirejs
grunt-template-jasmine-requirejs copied to clipboard
Backslash in script path
When generating _SpecRunner.html on Windows I get following script imports:
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
<link rel="stylesheet" type="text/css" href=".grunt/grunt-contrib-jasmine/jasmine.css">
<script src=".grunt\grunt-contrib-jasmine/require.js"></script>
<script src=".grunt/grunt-contrib-jasmine/jasmine.js"></script>
<script src=".grunt/grunt-contrib-jasmine/jasmine-html.js"></script>
<script src=".grunt/grunt-contrib-jasmine/json2.js"></script>
<script src=".grunt/grunt-contrib-jasmine/boot.js"></script>
For some reason there's a backslash in .grunt\grunt-contrib-jasmine/require.js
.
because of that https://nodejs.org/api/path.html#path_path_relative_from_to
how we get this fixxed?