electron-compile
Version:
Electron supporting package to compile JS and CSS in Electron applications
14 lines (10 loc) • 344 B
JavaScript
import './babel-maybefill';
import _ from 'lodash';
import * as configParser from './config-parser';
import CompilerHost from './compiler-host';
import FileChangedCache from './file-change-cache';
import CompileCache from './compile-cache';
module.exports = _.assign({},
configParser,
{ CompilerHost, FileChangedCache, CompileCache }
);