-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
40 lines (33 loc) · 850 Bytes
/
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
Package.describe({
name: "seba:autoprefix",
summary: "Meteor 1.2+ package to autoprefix your css files.",
version: '0.0.1',
git: "https://github.com/sebakerckhof/meteor-autoprefix",
documentation: "README.md"
});
Package.registerBuildPlugin({
name: "Autoprefixer",
sources: [
"plugin/handler.js"
],
use: ['caching-compiler', 'ecmascript', '[email protected]'],
npmDependencies : {
'autoprefixer' : '6.0.3'
}
});
Package.onUse(function (api) {
api.use(["meteor", 'isobuild:[email protected]']);
});
Package.onTest(function (api) {
api.use('sanjo:[email protected]');
api.use(["meteor", "netanelgilad:angular2-typescript"]);
// specs
api.addFiles([
'tests/tests.spec.js'
], 'client');
// app to test
api.addFiles([
"tests/client/index.html",
"tests/client/app.ts"
], "client");
});