Skip to content
This repository has been archived by the owner on Nov 14, 2017. It is now read-only.

Commit

Permalink
fix for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
netanelgilad committed Dec 18, 2015
1 parent 244a946 commit 18fcabf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'netanelgilad:excel',
summary: 'Parse excel worksheets for your meteor app.',
version: '0.2.5',
version: '0.2.6',
git: 'https://github.com/netanelgilad/meteor-excel'
});

Expand All @@ -16,13 +16,13 @@ Package.onUse(function(api) {
api.addFiles('lib/utils.js', 'server');
api.addFiles('lib/workbook.js', 'server');
api.addFiles('lib/worksheet.js', 'server');
api.addFiles('netanelgilad:excel.js', 'server');
api.addFiles('excel.js', 'server');

api.export('Excel');
});

Package.onTest(function(api) {
api.use('tinytest');
api.use('netanelgilad:excel');
api.addFiles('netanelgilad:excel-tests.js');
api.addFiles('excel-tests.js');
});

0 comments on commit 18fcabf

Please sign in to comment.