You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
363 B
TypeScript

import { consola } from 'consola';
import syncAgentIndex from './syncAgentIndex';
import syncPluginIndex from './syncPluginIndex';
import syncProviderIndex from './syncProviderIndex';
const runSync = async () => {
consola.start('Start sync readme workflow...');
await syncProviderIndex();
await syncAgentIndex();
await syncPluginIndex();
};
runSync();