-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
29 lines (27 loc) · 1.02 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
Package.describe({
name: 'appworkshop:autoform-materialize-helptext',
version: '2.0.1',
// Brief, one-line summary of the package.
summary: 'Adds help text to mozfet:autoform-materialize',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/appworkshop/meteor-autoform-materialize-helptext',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function (api) {
api.versionsFrom('2.12');
api.use('ecmascript');
api.use([
'dm:[email protected]'
], ['client']);
api.use([
'aldeed:[email protected]||6.0.0||7.0.0',
'mozfet:[email protected]||1.0.0||2.0.0||3.0.0||4.0.0||5.0.0',
], ['client'], {weak: true}); // dependencies can't be resolved unless we use weak: true
api.addFiles([
'afFormGroup_materialize_withHelp.html',
'afFormGroup_materialize_withHelp.js'
], ['client']);
});