mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
426 B
JavaScript
18 lines
426 B
JavaScript
Package.describe({
|
|
name: "babel-compiler",
|
|
summary: "Parser/transpiler for ECMAScript 2015+ syntax",
|
|
// Tracks the npm version below. Use wrap numbers to increment
|
|
// without incrementing the npm version.
|
|
version: '5.8.22-plugins.0'
|
|
});
|
|
|
|
Npm.depends({
|
|
'meteor-babel': '0.5.7'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.addFiles('babel.js', 'server');
|
|
api.use('check@1.0.5');
|
|
api.export('Babel', 'server');
|
|
});
|