Skip to content

Commit

Permalink
lint and normalize .git/.npm ignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlacy committed Mar 18, 2015
1 parent a6f6c69 commit 8727e6f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -16,3 +16,6 @@ results
npm-debug.log
node_modules
*.sublime*
.travis.yml
test
examples
14 changes: 14 additions & 0 deletions .npmignore
@@ -1,4 +1,18 @@
.DS_Store
build
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules
*.sublime*
Expand Down
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -44,7 +44,7 @@ module.exports = function (options) {
}
return file;
}).then(function(file) {
cb(null, file);
cb(null, file);
}).catch(function(err) {
// Convert the keys so PluginError can read them
err.lineNumber = err.line;
Expand All @@ -56,4 +56,4 @@ module.exports = function (options) {
throw new PluginError('gulp-less', err);
}).done(undefined, cb);
});
};
};

0 comments on commit 8727e6f

Please sign in to comment.