forked from Anonyfox/meteor-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
27 lines (25 loc) · 797 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
23
24
25
26
27
Package.describe({
name: 'nefiltari:yaki',
version: '0.0.8',
summary: 'Yaki can capture relevant tags from any bunch of text.',
git: 'https://github.com/nefiltari/yaki.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use(['coffeescript','underscore'],['client','server']);
api.addFiles([
'stopwords/stopwords_de.coffee',
'stopwords/stopwords_en.coffee',
'lib/vocabulary.coffee.md',
'lib/configuration.coffee.md',
'lib/yaki.coffee.md',
'globals.js'
],['client','server']);
api.export('Yaki', ['client','server'])
});
Package.onTest(function(api) {
api.use(['tinytest','coffeescript','underscore'],['client','server']);
api.use('nefiltari:yaki',['client','server']);
api.addFiles('test.coffee.md');
});