-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.js
More file actions
executable file
·37 lines (32 loc) · 838 Bytes
/
package.js
File metadata and controls
executable file
·37 lines (32 loc) · 838 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
27
28
29
30
31
32
33
34
35
36
37
Package.describe({
name: "themeteorchef:bert",
version: "2.2.2",
summary: "A client side, multi-style alerts system for Meteor.",
git: "http://github.com/themeteorchef/bert",
documentation: "README.md",
});
Package.onUse(function (api) {
api.versionsFrom("1.2.0.2");
api.use(
["ecmascript", "templating", "session", "jquery", "fourseven:scss@4.12.0"],
"client"
);
api.addFiles(
[
"templates/bert-alert.html",
"templates/bert-alert.js",
"templates/body.html",
"stylesheets/colors.scss",
"stylesheets/flexbox.scss",
"stylesheets/bert.scss",
"bert.js",
],
"client"
);
api.export("Bert");
});
Package.onTest(function (api) {
api.use(["tinytest", "session", "jquery"]);
api.use("themeteorchef:bert");
api.addFiles("tests/client.js", "client");
});