-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.js
22 lines (21 loc) · 898 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package.describe({
name: 'michalvalasek:autoform-bootstrap-colorpicker',
version: '0.1.0',
summary: 'Custom bootstrap colorpicker input type for Autoform',
git: 'https://github.com/michalvalasek/meteor-autoform-bootstrap-colorpicker.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
api.use('[email protected]');
api.use('aldeed:[email protected]', 'client');
api.addFiles([
'lib/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.js',
'lib/bootstrap-colorpicker/dist/css/bootstrap-colorpicker.css',
'lib/bootstrap-colorpicker/dist/img/bootstrap-colorpicker/alpha.png',
'lib/bootstrap-colorpicker/dist/img/bootstrap-colorpicker/hue.png',
'lib/bootstrap-colorpicker/dist/img/bootstrap-colorpicker/saturation.png',
'autoform-bootstrap-colorpicker.html',
'autoform-bootstrap-colorpicker.js'
], 'client');
});