-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
52 lines (43 loc) · 1.34 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Package.describe({
summary: "blaze component catalogue inspired by chromatic and react-storybook",
version: "1.0.0",
name: "ell:blaze-styleguide",
});
function configurePackage(api) {
api.versionsFrom("1.5");
var impliedPackages = ["standard-minifier-css", "standard-minifier-js",
"templating", "underscore", "session",
"kadira:[email protected]",
"kadira:[email protected]",
"twbs:[email protected]"
];
api.use(impliedPackages);
api.imply(impliedPackages);
api.export("SG", "client");
api.addFiles([]);
api.addFiles([], ["server"]);
api.addFiles([
"client/sg_screen/sg_screen.html",
"client/sg_screen/sg_screen_s.html",
"client/sg_empty.html",
"client/sg_layout.html",
"client/sg_nav.html",
"client/sg_renderer.html",
"client/lib/sg.js",
"client/sg_screen/sg_screen.css",
"client/sg_screen/sg_screen.js",
"client/sg_screen/sg_screen_s.js",
"client/sg_configure.js",
"client/sg_layout.css",
"client/sg_layout.js",
"client/sg_nav.css",
"client/sg_nav.js",
"client/sg_register.js",
"client/sg_renderer.js",
"client/sg_routes.js"
], ["client"]);
}
Package.onUse(configurePackage);
Package.onTest(function(api) {
configurePackage(api);
});