You've already forked joplin
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:
12
packages/tools/gulp/tasks/buildScriptIndexesRun.js
Normal file
12
packages/tools/gulp/tasks/buildScriptIndexesRun.js
Normal 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);
|
||||
});
|
Reference in New Issue
Block a user