Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { actions, prompts } from './constants.js';
const libraryGenerator = {
description: 'Add a new library of js designed for use in Automattic products.',
prompts,
actions: () => [
...actions,
{
type: 'add',
path: '../{{kebabCase name}}/package.json',
templateFile: 'templates/library/package.json.hbs',
abortOnFail: true,
},
{
type: 'add',
path: '../{{kebabCase name}}/src/index.ts',
templateFile: 'templates/library/index.js.hbs',
abortOnFail: true,
},
],
};
export default libraryGenerator;