fix: export Generator

This commit is contained in:
winixt 2021-08-20 12:11:50 +08:00
parent 346e997093
commit de540f0b2f
2 changed files with 6 additions and 3 deletions

View File

@ -2,10 +2,11 @@ import {
copyFileSync, readFileSync, statSync, writeFileSync
} from 'fs';
import { dirname, relative, join } from 'path';
import {
chalk, mkdirp, Mustache, glob
} from './index';
import chalk from 'chalk';
import mkdirp from 'mkdirp';
import glob from 'glob';
import Mustache from 'mustache';
class Generator {
cwd;

View File

@ -15,6 +15,7 @@ import portfinder from 'portfinder';
import resolve from 'resolve';
import Mustache from 'mustache';
import Generator from './Generator';
import winPath from './winPath';
import delay from './delay';
import compatESModuleRequire from './compatESModuleRequire';
@ -42,6 +43,7 @@ export {
};
export {
Generator,
winPath,
delay,
compatESModuleRequire,