You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
492 B
19 lines
492 B
import { CustomGenerator } from './types';
|
|
/**
|
|
*
|
|
* Generator for initializing a webpack config
|
|
*
|
|
* @class InitGenerator
|
|
* @extends CustomGenerator
|
|
* @returns {Void} After execution, transforms are triggered
|
|
*
|
|
*/
|
|
export default class InitGenerator extends CustomGenerator {
|
|
autoGenerateConfig: boolean;
|
|
generationPath: string;
|
|
private langType;
|
|
constructor(args: any, opts: any);
|
|
prompting(): Promise<void | {}>;
|
|
installPlugins(): void;
|
|
writing(): void;
|
|
}
|
|
|