Files
nexe/src/patches/index.js
T
2017-06-26 20:01:53 -05:00

19 lines
342 B
JavaScript

import gyp from './gyp'
import nexePatches from './third-party-main'
import cli from './disable-node-cli'
import flags from './flags'
import ico from './ico'
import rc from './node-rc'
const patches = [
gyp,
(compiler, next) => compiler.setMainModule(compiler, next),
nexePatches,
cli,
flags,
ico,
rc
]
export default patches