1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Chore: Automatically build migration index

This commit is contained in:
Laurent Cozic
2024-01-04 17:18:57 +00:00
parent 9aa7240d5e
commit a281163353
15 changed files with 69 additions and 41 deletions

View File

@ -0,0 +1,12 @@
// Allow running that task "buildScriptIndexes" without gulp
const task = require('./buildScriptIndexes.js');
const main = async () => {
await task.fn();
};
main().catch((error) => {
console.error(error);
process.exit(1);
});