Skip to content

Commit

Permalink
Merge pull request #621 from eleven-labs/fix-style-import-path
Browse files Browse the repository at this point in the history
Fix import file path
  • Loading branch information
Mehdy Dara committed Jun 22, 2015
2 parents 6162048 + dd91054 commit 8d5c1d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gulp/_styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ gulp.task('styles', function () {

var injectOptions = {
transform: function(filePath) {
filePath = filePath.replace(path.join(conf.paths.src, '/app/'), '');
return '@import \'' + filePath + '\';';
filePath = filePath.replace(conf.paths.src + '/app/', '');
return '@import "' + filePath + '";';
},
starttag: '// injector',
endtag: '// endinjector',
Expand Down

0 comments on commit 8d5c1d4

Please sign in to comment.