-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
32 lines (29 loc) · 762 Bytes
/
package.js
File metadata and controls
32 lines (29 loc) · 762 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
Package.describe({
name: 'pipeline:ecmascript',
version: '0.1.0',
summary: 'Ecmascript in the pipeline',
git: 'https://github.com/MeteorPipeline/ecmascript',
documentation: null
});
Package.registerBuildPlugin({
name: 'pipeline:ecmascript',
use: [
'pipeline:js@0.0.1',
'babel-compiler@5.8.20-rc.0',
'ecmascript@0.1.3-rc.0'
],
sources: [
'plugin/plugin.js'
]
});
Package.onUse(function(api) {
api.use('isobuild:compiler-plugin@1.0.0');
api.imply('babel-runtime@0.1.2');
api.imply('promise@0.4.1');
});
Package.onTest(function(api) {
api.use(["tinytest", "underscore"]);
api.use(["pipeline:ecmascript", "babel-compiler"]);
api.addFiles("runtime-tests.js");
api.addFiles("transpilation-tests.js", "server");
});