mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-15 10:57:58 +00:00
19 lines
466 B
JavaScript
19 lines
466 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
pkg: {
|
|
patches: {
|
|
'lib/nightmare.js': [
|
|
'path.join(__dirname, \'runner.js\')',
|
|
'path.join(path.dirname(process.execPath), \'nightmare/runner.js\')'
|
|
]
|
|
},
|
|
deployFiles: [
|
|
[ 'lib/runner.js', 'nightmare/runner.js' ],
|
|
[ 'lib/frame-manager.js', 'nightmare/frame-manager.js' ],
|
|
[ 'lib/ipc.js', 'nightmare/ipc.js' ],
|
|
[ 'lib/preload.js', 'nightmare/preload.js' ]
|
|
]
|
|
}
|
|
};
|