mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
354 B
JavaScript
13 lines
354 B
JavaScript
Package.describe({
|
|
name: "babel-runtime",
|
|
summary: "Runtime support for output of Babel transpiler",
|
|
version: '0.1.3',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
// Code runs on client or server, wherever it is asked for!
|
|
api.addFiles('babel-runtime.js');
|
|
api.export('babelHelpers'); // See note in babel-runtime.js
|
|
});
|