mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
558fcafc71
* fix: format code prettier, enable ci * chore: add trivago import prettier pluggin
17 lines
430 B
JavaScript
17 lines
430 B
JavaScript
/**
|
|
* Not used at this moment, but I'll leave it here for future usage.
|
|
* Ref https://github.com/verdaccio/verdaccio/pull/2253#discussion_r632052482
|
|
*/
|
|
module.exports = {
|
|
name: `plugin-postinstall`,
|
|
factory: () => ({
|
|
hooks: {
|
|
beforeWorkspacePacking(_workspace, data) {
|
|
if ('scripts' in data && 'postinstall' in data.scripts) {
|
|
delete data.scripts.postinstall;
|
|
}
|
|
},
|
|
},
|
|
}),
|
|
};
|