Skip to content

Commit

Permalink
Add missing directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago committed Jun 6, 2023
1 parent 90c9da2 commit 91c19a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .bin/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 91c19a6

Please sign in to comment.