mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
function readPackage(pkg, context) {
|
|
if (process.platform !== 'win32') {
|
|
delete pkg.optionalDependencies['registry-js'];
|
|
}
|
|
|
|
return pkg
|
|
}
|
|
|
|
module.exports = {
|
|
hooks: {
|
|
readPackage
|
|
}
|
|
}
|