Skip to content

Commit

Permalink
add meteor package.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Chun-Yang committed Oct 22, 2015
1 parent dd28f96 commit b04e7cb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
var version = '3.1.7';

Package.describe({
'name': 'nolimits4web:swiper',
'summary': 'iDangero.us Swiper - lightweight mobile touch slider, hardware accelerated transitions.',
'version': version,
'git': 'https://github.com/nolimits4web/Swiper'
});

Package.onUse(function (api) {
api.versionsFrom('1.1.0.2');

api.addFiles([
'dist/css/swiper.min.css',
'dist/js/swiper.js'
], ['client']
);

// Since swiper is attached to window, we do not need to export Swiper
// api.export('Swiper');
});

Package.onTest(function (api) {
});

0 comments on commit b04e7cb

Please sign in to comment.