Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yannikmethot committed Mar 11, 2016
1 parent e85617d commit 47909e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/lib/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ export function imports(options) {
let current = options.numFiles - 1,
statements = '';

while (current > 0) {
let _name = name(options.output, current, options.suffix, EXTENSION),
_splitted = _name.split('/');
_name = _splitted[_splitted.length - 1];
statements += '@import "' + options.rootPath + _name + '";' + options.linefeed;
while (current > 0) {
let _name = name(options.output, current, options.suffix, EXTENSION),
_splitted = _name.split('/');
_name = _splitted[_splitted.length - 1];
statements += '@import "' + options.rootPath + _name + '";' + options.linefeed;

current--;
}
current--;
}

return statements;
}
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/bless.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module.exports = function(grunt) {
output: outPutfileName,
suffix: suffix,
linefeed: (options.compress ? '' : grunt.util.linefeed),
rootPath: options.rootPath
rootPath: options.rootPath
});

header += grunt.util.linefeed;
Expand Down

0 comments on commit 47909e8

Please sign in to comment.