diff --git a/.bin/init.js b/.bin/init.js index ff06c0a..12a41a4 100644 --- a/.bin/init.js +++ b/.bin/init.js @@ -13,6 +13,8 @@ console.log('Copying file...'); fs.copySync(`${srcd}/.storybook`, `${cwd}/.storybook`); fs.copySync(`${srcd}/src`, `${cwd}/src`); +fs.copySync(`${srcd}/bin`, `${cwd}/bin`); +fs.copySync(`${srcd}/public`, `${cwd}/public`); fs.copySync(`${srcd}/rollup.config.js`, `${cwd}/rollup.config.js`); fs.copySync(`${srcd}/tsconfig.json`, `${cwd}/tsconfig.json`); fs.copySync(`${srcd}/tsconfig.eslint.json`, `${cwd}/tsconfig.eslint.json`); diff --git a/CHANGELOG.md b/CHANGELOG.md index 1583ef6..bb5e24b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.3] - 2023-06-06 +### Fixed +- Add missing directories + ## [2.0.2] - 2023-06-06 ### Fixed - Fix init script @@ -104,7 +108,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 🐛 avoid partial utility name \[[eb48591](https://github.com/frontend/storybox/commit/eb48591e772cb1009eb4433bfe580a6d188f1ae8)] - 🐛 fix broken render \[[8c1ac79](https://github.com/frontend/storybox/commit/8c1ac7968a68c71ab69b2ae17e9e26948e8c61d4)] -[Unreleased]: https://github.com/frontend/storybox/compare/2.0.2...HEAD +[Unreleased]: https://github.com/frontend/storybox/compare/2.0.3...HEAD +[2.0.3]: https://github.com/frontend/storybox/compare/2.0.2...2.0.3 [2.0.2]: https://github.com/frontend/storybox/compare/2.0.1...2.0.2 [2.0.1]: https://github.com/frontend/storybox/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/frontend/storybox/compare/1.1.1...2.0.0 diff --git a/package.json b/package.json index fb93987..e556295 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "frontend-storybox", "displayName": "📖 Storybox", - "version": "2.0.2", + "version": "2.0.3", "description": "Storybook distribution for styleguide as a deliverable", "author": "github/frontend", "license": "MIT",