scratch – Blame information for rev 117
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
117 | office | 1 | var version = '3.4.2'; |
2 | |||
3 | Package.describe({ |
||
4 | name: 'nolimits4web:swiper', |
||
5 | summary: 'iDangero.us Swiper - mobile touch slider with hardware accelerated transitions and native behavior', |
||
6 | version: version, |
||
7 | git: 'https://github.com/nolimits4web/Swiper' |
||
8 | }); |
||
9 | |||
10 | Package.onUse(function (api) { |
||
11 | api.versionsFrom('1.1.0.2'); |
||
12 | |||
13 | api.addFiles([ |
||
14 | 'dist/css/swiper.min.css', |
||
15 | 'dist/js/swiper.js' |
||
16 | ], ['client'] |
||
17 | ); |
||
18 | |||
19 | // Since swiper is attached to window, we do not need to export Swiper |
||
20 | // api.export('Swiper'); |
||
21 | }); |
||
22 | |||
23 | Package.onTest(function (api) { |
||
24 | }); |