-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
36 lines (29 loc) · 755 Bytes
/
package.js
File metadata and controls
36 lines (29 loc) · 755 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
36
Package.describe({
name: 'wieldo:angular-formly-transformer',
summary: 'Automate configuration of fields in Angular-Formly',
version: '1.3.0',
documentation: 'README.md',
git: 'https://github.com/wieldo/angular-formly-transformer.git'
});
Npm.depends({
'angular-formly-transformer': '1.3.0'
});
Package.onUse(function (api) {
var packages = {
use: [
'angular:angular@1.4.0',
'formly:angular-formly@7.3.9_3'
],
imply: [
'formly:angular-formly'
]
};
api.versionsFrom('METEOR@1.0');
api.use(packages.use);
api.imply(packages.imply);
api.addFiles([
'dist/formly-transformer.js'
], 'client', {
transpile: false
});
});