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