-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.js
More file actions
20 lines (19 loc) · 586 Bytes
/
package.js
File metadata and controls
20 lines (19 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Package.describe({
name: 'aldeed:autoform-bs-button-group-input',
summary: 'A Bootstrap button group theme for the "select-checkbox" and "select-radio" AutoForm input types',
version: '2.0.0',
git: 'https://github.com/aldeed/meteor-autoform-bs-button-group-input.git'
});
Package.onUse(function(api) {
api.use('templating@1.0.0');
api.use('blaze@2.0.0');
api.use('aldeed:autoform@6.0.0');
api.addFiles([
'cb-buttons.html',
'cb-buttons.js',
'rad-buttons.html',
'rad-buttons.js',
'bool-rad-buttons.html',
'bool-rad-buttons.js'
], 'client');
});