-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.js
More file actions
40 lines (34 loc) · 812 Bytes
/
package.js
File metadata and controls
40 lines (34 loc) · 812 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
38
Package.describe({
documentation: 'README.md',
git: "https://github.com/meteorwebcomponents/compiler.git",
name: "mwc:compiler",
summary: "Use polymer as the default templating engine instead of blaze.",
version: "1.1.50"
});
Package.on_use(function(api) {
api.use("underscore@1.0.4", "server");
api.addFiles("mwc_compiler.js", ["server"]);
api.export("MWC_Compiler");
api.export("vulcanizer");
api.versionsFrom("1.0");
});
Npm.depends({
"chokidar": "1.2.0",
"mkdirp": "0.5.0",
'node-echo': '0.1.1',
"vulcanize": "1.14.0"
})
Package.registerBuildPlugin({
name: "initializing-compiler",
use: [
'underscore@1.0.4'
],
sources: [
'plugin/init_compiler.js'
],
npmDependencies: {
'mkdirp': '0.5.0',
'node-echo': '0.1.1',
'js-beautify': '1.5.5'
}
});