File size: 279 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import componentGenerator from './generators/component.js';
import libraryGenerator from './generators/library.js';
const config = ( plop ) => {
plop.setGenerator( 'component', componentGenerator );
plop.setGenerator( 'library', libraryGenerator );
};
export default config;
|