-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
31 lines (27 loc) · 1.05 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
28
29
30
31
Package.describe({
name: 'rralian:wordpresscom',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: 'WordPress.com OAuth2 Flow',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/rralian/meteor-wordpresscom',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md',
author: 'Bob Ralian'
});
Package.onUse(function(api) {
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['server']);
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use('[email protected]', ['client', 'server']);
api.export('Wordpresscom');
api.addFiles(
['wordpresscom_configure.html', 'wordpresscom_configure.js'],
'client');
api.addFiles('wordpresscom_server.js', 'server');
api.addFiles('wordpresscom_client.js', 'client');
});