-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.js
27 lines (26 loc) · 1.16 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
Package.describe({
name: 'jonlachlan:quill-reactive',
version: '0.0.9',
summary: 'Helpers for QuillJS rich text (WYSIWYG) editor, with live editing similar to Google Docs or Etherpad',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/jonlachlan/quill-reactive',
// 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('[email protected]');
api.use("templating", "client");
api.use('mongo', 'server');
api.use('trever:[email protected]');
api.use('jonlachlan:[email protected]');
api.use('robertlowe:[email protected]');
api.use('dburles:[email protected]');
api.addFiles('templates/quill-reactive.html', 'client');
api.addFiles('templates/quill-reactive.js', 'client');
api.addFiles('collections/quill-stack.js', 'server');
api.addFiles('methods/update-quill.js', 'server');
api.addFiles('methods/update-quill-client.js', 'client');
api.export('QuillDrafts', 'client');
api.export('QuillStacks', 'server')
});