forked from arboleya/electrify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
26 lines (20 loc) · 659 Bytes
/
package.js
File metadata and controls
26 lines (20 loc) · 659 Bytes
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
var VERSION = '2.1.4';
Package.describe({
name: 'arboleya:electrify',
version: VERSION,
summary: 'Package your Meteor apps with Electron, and butter.',
git: 'https://github.com/arboleya/electrify',
documentation: 'README.md'
});
Npm.depends({
'sockjs-client': '1.0.3'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use('random');
// TODO: change this static version for a browserified version of
// the npm module informed inside Npm.depends() above
api.addFiles('meteor/vendors/sockjs-client.js', ['client'], {bare: true});
api.addFiles('meteor/index.js', ['server', 'client']);
api.export('Electrify');
});