mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
Package.describe({
|
|
name: "babel-runtime",
|
|
summary: "Runtime support for output of Babel transpiler",
|
|
version: '1.5.1',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use("modules");
|
|
api.mainModule("babel-runtime.js", "server");
|
|
});
|