-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.js
More file actions
31 lines (26 loc) · 742 Bytes
/
package.js
File metadata and controls
31 lines (26 loc) · 742 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
Package.describe({
name: 'pbastowski:angular2-now',
version: '1.1.6',
summary: 'Angular 2 @Component syntax for Meteor 1.2 and AngularJS',
git: 'https://github.com/pbastowski/angular2-now.git',
documentation: 'README.md'
});
Npm.depends({
'angular2-now': '1.1.6'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.0.1');
api.use('angular@1.3.4', 'client');
api.imply('angular@1.3.4', 'client');
// Make sure we load after pbastowski:systemjs, if it's used
api.use('pbastowski:systemjs@0.0.1', 'client', {
weak: true
});
api.addFiles([
'.npm/package/node_modules/angular2-now/dist/angular2-now.js',
'src/exports.js'
], 'client', {
transpile: false
});
api.export(['angular2now']);
});