forked from mrphu3074/react-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
33 lines (29 loc) · 1.04 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
32
33
Package.describe({
name: 'izzilab:material-ui',
version: '0.1.1',
// Brief, one-line summary of the package.
summary: 'Material-UI using official React package',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/mrphu3074/react-material-ui.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
var MUI_VERSION = '0.10.2';
var EXTERNALIFY_VERSION = "0.1.0";
var TAP_EVENT_PLUGIN_VERSION = '0.1.7';
Npm.depends({
'externalify': EXTERNALIFY_VERSION,
'material-ui': MUI_VERSION,
'react-tap-event-plugin': TAP_EVENT_PLUGIN_VERSION
});
Package.onUse(function(api){
api.use(['[email protected]'], 'both');
api.use(['cosmos:[email protected]'], 'both');
api.addFiles([
'window.react.js',
'client.browserify.options.json',
'client.browserify.js'
], 'both');
api.export(["MUI", "injectTapEventPlugin"], 'both');
});