forked from formly-js/angular-formly-templates-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
72 lines (56 loc) · 1.76 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
var both = ['client', 'server'];
var client = 'client';
var server = 'server';
Package.describe({
name: "wieldo:angular-formly-templates-material",
summary: "Material design templates for angular-formly",
version: "0.0.4",
documentation: 'README.md',
git: 'https://github.com/wieldo/angular-formly-templates-material.git'
});
Package.onUse(function (api) {
var packages = {
use: [
'pbastowski:[email protected]',
'pbastowski:[email protected]',
'wieldo:[email protected]'
],
imply: [
'angular:[email protected]',
'angular:[email protected]',
'angular:[email protected]',
'wieldo:[email protected]'
]
};
api.versionsFrom("[email protected]");
api.use(packages.use);
api.imply(packages.imply);
api.addFiles([
'lib/client/main.js',
//
// wrappers
//
// input-container
'lib/client/wrappers/input-container/input-container.js',
'lib/client/wrappers/input-container/input-container.ng.html',
// label
'lib/client/wrappers/label/label.js',
'lib/client/wrappers/label/label.ng.html',
// messages
'lib/client/wrappers/messages/messages.js',
'lib/client/wrappers/messages/messages.ng.html',
//
// types
//
// input
'lib/client/types/input/input.js',
'lib/client/types/input/input.ng.html',
// checkbox
'lib/client/types/checkbox/checkbox.js',
'lib/client/types/checkbox/checkbox.ng.html',
// switch
'lib/client/types/switch/switch.js',
'lib/client/types/switch/switch.ng.html'
], client);
});