mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-15 06:58:07 +00:00
23 lines
640 B
JavaScript
23 lines
640 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
pkg: {
|
|
patches: {
|
|
'build/scripts.js': [
|
|
'path.join(__dirname, \'..\', \'scripts\')',
|
|
'path.join(path.dirname(process.execPath), \'drivelist\')'
|
|
],
|
|
'lib/scripts.js': [
|
|
'path.join(__dirname, \'..\', \'scripts\')',
|
|
'path.join(path.dirname(process.execPath), \'drivelist\')' // for 4.0.0
|
|
]
|
|
},
|
|
deployFiles: [
|
|
[ 'build/Release/drivelist.node', 'drivelist.node' ],
|
|
[ 'scripts/darwin.sh', 'drivelist/darwin.sh' ],
|
|
[ 'scripts/linux.sh', 'drivelist/linux.sh' ],
|
|
[ 'scripts/win32.bat', 'drivelist/win32.bat' ]
|
|
]
|
|
}
|
|
};
|