Skip to content

Commit

Permalink
Merge pull request nolimits4web#1473 from Chun-Yang/master
Browse files Browse the repository at this point in the history
add support for meteor
  • Loading branch information
nolimits4web committed Oct 25, 2015
2 parents dd28f96 + b04e7cb commit f11591b
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 f11591b

Please sign in to comment.