react-saasify-chrisvxd
Version:
React components for Saasify web clients.
41 lines (33 loc) • 1.08 kB
JavaScript
const localRequire = require('../../utils/localRequire');
async function babel7(asset, options) {
let config = options.config;
// If this is an internally generated config, use our internal @babel/core,
// otherwise require a local version from the package we're compiling.
let babel = options.internal
? require('@babel/core')
: await localRequire('@babel/core', asset.name);
let pkg = await asset.getPackage();
config.code = false;
config.ast = true;
config.filename = asset.name;
config.cwd = pkg ? pkg.pkgdir : asset.options.rootDir;
config.babelrc = false;
config.configFile = false;
config.parserOpts = Object.assign({}, config.parserOpts, {
allowReturnOutsideFunction: true,
strictMode: false,
sourceType: 'module',
plugins: ['dynamicImport']
});
let res;
if (asset.ast) {
res = babel.transformFromAst(asset.ast, asset.contents, config);
} else {
res = babel.transformSync(asset.contents, config);
}
if (res.ast) {
asset.ast = res.ast;
asset.isAstDirty = true;
}
}
module.exports = babel7;