Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Commit

Permalink
lint it
Browse files Browse the repository at this point in the history
  • Loading branch information
snasc committed Nov 26, 2014
1 parent 09971db commit 9066d36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fileprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ FileProcessor.prototype.process = function (filename, assetSearchPath) {

var content = this.replaceWithRevved(this.replaceBlocks(this.file), this.file.searchPath);

this.isFileModified = !!this.file.blocks.length || (this.file.content != content);
this.isFileModified = !!this.file.blocks.length || (this.file.content !== content);

return content;
};
2 changes: 1 addition & 1 deletion tasks/usemin.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = function (grunt) {
grunt.log.writeln('Replaced ' + chalk.cyan(files.length) + ' ' +
(files.length === 1 ? 'reference' : 'references') + ' to assets'
);
grunt.log.writeln('Real changed '+ chalk.cyan(realChange) +' file'+ (realChange>1?'s':'') +'.');
grunt.log.writeln('Real changed ' + chalk.cyan(realChange) + ' file' + (realChange > 1 ? 's' : '') + '.');
});
});

Expand Down

0 comments on commit 9066d36

Please sign in to comment.