Browse Source

ignore .DS_Store files on mac os x

pull/391/head
arve0 8 years ago
parent
commit
6b6c0848b5
  1. 1
      .gitignore
  2. 1
      benchmark/benchmark.js

1
.gitignore

@ -4,3 +4,4 @@ coverage/
demo/
apidoc/
*.log
.DS_Store

1
benchmark/benchmark.js

@ -16,6 +16,7 @@ var IMPLS = [];
fs.readdirSync(IMPLS_DIRECTORY).sort().forEach(function (name) {
if (name === '.DS_Store') { return; }
var file = path.join(IMPLS_DIRECTORY, name);
var code = require(file);

Loading…
Cancel
Save