mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
Package.describe({
|
|
name: 'ecmascript',
|
|
version: '0.16.8',
|
|
summary: 'Compiler plugin that supports ES2015+ in all .js files',
|
|
documentation: 'README.md',
|
|
});
|
|
|
|
Package.registerBuildPlugin({
|
|
name: 'compile-ecmascript',
|
|
use: ['babel-compiler', 'react-fast-refresh'],
|
|
sources: ['plugin.js'],
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('isobuild:compiler-plugin@1.0.0');
|
|
api.use('babel-compiler');
|
|
api.use('react-fast-refresh');
|
|
|
|
// The following api.imply calls should match those in
|
|
// ../coffeescript/package.js.
|
|
api.imply('modules');
|
|
api.imply('ecmascript-runtime');
|
|
api.imply('babel-runtime');
|
|
api.imply('promise');
|
|
|
|
// Runtime support for Meteor 1.5 dynamic import(...) syntax.
|
|
api.imply('dynamic-import');
|
|
|
|
api.addFiles('ecmascript.js', 'server');
|
|
api.export('ECMAScript', 'server');
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use(['tinytest']);
|
|
api.use(['es5-shim', 'ecmascript', 'babel-compiler']);
|
|
api.addFiles('runtime-tests.js');
|
|
api.addFiles('transpilation-tests.js', 'server');
|
|
|
|
api.addFiles('bare-test.js');
|
|
api.addFiles('bare-test-file.js', ['client', 'server'], {
|
|
bare: true,
|
|
});
|
|
api.addFiles('runtime-client-tests.js', ['client', 'web.browser.legacy']);
|
|
});
|