1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/tools/gulp/tasks/buildScriptIndexesRun.js
2024-01-04 17:18:57 +00:00

13 lines
232 B
JavaScript

// 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);
});