1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Chore: Fixes #10306: Remove unnecessary initial commit in default plugins build (#10308)

This commit is contained in:
Henry Heino
2024-04-15 10:14:47 -07:00
committed by GitHub
parent 035557de9f
commit e3ba605592
3 changed files with 32 additions and 19 deletions

View File

@@ -1,7 +1,10 @@
import buildDefaultPlugins from '../buildDefaultPlugins';
const buildAll = (outputDirectory: string) => {
return buildDefaultPlugins(outputDirectory, async () => { });
return buildDefaultPlugins(outputDirectory, {
beforeInstall: async () => { },
beforePatch: async () => { },
});
};
export default buildAll;