forked from RoyalMist/meteor-gsap
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.js
34 lines (28 loc) · 829 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Package.describe({
summary: 'GreenSock Animation Platform : Professional-Grade HTML5 Animation.',
version: "1.16.0",
git: "https://github.com/infinitedg/meteor-gsap/"
});
Package.on_use(function (api) {
api.versionsFrom("[email protected]");
api.add_files([
'header.js',
], 'server');
api.add_files([
'vendor/Draggable.js'
], 'client');
api.add_files([
'vendor/TweenMax_client.js'
], 'client');
api.add_files([
'vendor/TweenMax_server.js'
], 'server');
api.add_files([
'vendor/GreenSock-JS/src/uncompressed/plugins/ColorPropsPlugin.js'
], ['client', 'server'])
// api.add_files([
// 'exports.js',
// ], 'server');
// api.export('TweenLite', ['client', 'server']);
// api.export('TweenMax', ['client', 'server']);
});