fix: add override for releaserc to disable npm publishing

This commit is contained in:
Derrick Hammer 2023-06-30 05:27:18 -04:00
parent f087296b67
commit a5cf68538d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ export default async function (context: PresetContext): Promise<PresetAsset> {
],
],
},
release: {
plugins: {
"3": ["@semantic-release/npm", { publish: false }],
},
},
},
};
}