-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.js
More file actions
35 lines (30 loc) · 798 Bytes
/
package.js
File metadata and controls
35 lines (30 loc) · 798 Bytes
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
35
Package.describe({
name: 'ctjp:meteor-intl-tel-input',
summary: 'Meteor package for https://github.com/Bluefieldscom/intl-tel-input',
version: '3.7.1_2',
git: 'https://github.com/ctjp/meteor-intl-tel-input.git'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
//== Use
// Client only
api.use('jquery', 'client');
//== Add files
// Client only
api.addFiles([
'lib/intl-tel-input/build/js/intlTelInput.js',
'lib/intl-tel-input/build/css/intlTelInput.css',
'lib/intl-tel-input/build/img/flags.png'
], 'client');
});
Package.onTest(function(api) {
//== Use
// Client only
api.use([
'tinytest',
'ctjp:meteor-intl-tel-input'
], 'client');
//== Add files
// Client only
api.addFiles('tests/meteor-intl-tel-input.js', 'client');
});