adding tmp to .npmignore [ci skip]

This commit is contained in:
SheetJS 2014-05-22 13:15:47 -07:00
parent e1f8dbb863
commit 86f21d76ce
3 changed files with 4 additions and 2 deletions

View File

@ -2,3 +2,5 @@ test_files/
tests/files/
index.html
misc/coverage.html
node_modules
tmp

View File

@ -1,6 +1,6 @@
{
"name": "xlsx",
"version": "0.7.2",
"version": "0.7.2-a",
"author": "sheetjs",
"description": "XLSB/XLSX/XLSM (Excel 2007+ Spreadsheet) parser and writer",
"keywords": [ "xlsx", "xlsb", "xlsm", "office", "excel", "spreadsheet" ],

View File

@ -117,7 +117,7 @@ function parsetest(x, wb, full, ext) {
});
});
});
if(!fs.existsSync(dir + '2013/' + x + '.xlsb')) return;
if(fs.existsSync(dir + '2013/' + x + '.xlsb'))
describe(x + ext + '.xlsb from 2013', function() {
it('should parse', function() {
var wb = X.readFile(dir + '2013/' + x + '.xlsb', opts);