mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
// Allow running that task "buildCommandIndex" without gulp
|
|
|
|
const task = require('./buildCommandIndex.js');
|
|
|
|
const main = async () => {
|
|
await task.fn();
|
|
};
|
|
|
|
main().catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|