10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
import { configurationGenerator } from './src/generators/configuration/configuration';
|
|
export { configurationGenerator };
|
|
|
|
// Exported for backwards compatibility in case a plugin is using the old name.
|
|
/** @deprecated Use `configurationGenerator` instead. */
|
|
const esbuildProjectGenerator = configurationGenerator;
|
|
|
|
export * from './src/generators/init/init';
|
|
export * from './src/utils/versions';
|