diff --git a/CHANGELOG.md b/CHANGELOG.md index 103f8855d8..812dc76465 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Fixes - Fix wrong typings generated for dist @kuzhelov ([#99](https://github.com/stardust-ui/react/pull/99)) +- Fix components generation script @kuzhelov ([#105](https://github.com/stardust-ui/react/pull/105)) ### Features - Add Menu `iconOnly`, MenuItem `iconOnly` and `icon` props @miroslavstastny ([#73](https://github.com/stardust-ui/react/pull/73)) diff --git a/build/gulp/tasks/generate/index.ts b/build/gulp/tasks/generate/index.ts index 34eaec3cfe..43607888f4 100644 --- a/build/gulp/tasks/generate/index.ts +++ b/build/gulp/tasks/generate/index.ts @@ -1,9 +1,9 @@ import { task, src, dest, series } from 'gulp' import { argv } from 'yargs' import config from '../../../../config' -import rename from 'gulp-rename' -import replace from 'gulp-replace' -import inquirer from 'inquirer' +import * as rename from 'gulp-rename' +import * as replace from 'gulp-replace' +import * as inquirer from 'inquirer' import * as path from 'path' import * as fs from 'fs'