Skip to content

Commit

Permalink
Add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago committed Jun 6, 2023
1 parent ede38fb commit e98a0a0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .bin/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ 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}/.jsziprc.json`, `${cwd}/.jsziprc.json`);
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.5] - 2023-06-06
### Fixed
- Fix missing files

## [2.0.4] - 2023-06-06
### Fixed
- Fix generated package.json
Expand Down Expand Up @@ -112,7 +116,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.4...HEAD
[Unreleased]: https://github.com/frontend/storybox/compare/2.0.5...HEAD
[2.0.5]: https://github.com/frontend/storybox/compare/2.0.4...2.0.5
[2.0.4]: https://github.com/frontend/storybox/compare/2.0.3...2.0.4
[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
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend-storybox",
"displayName": "📖 Storybox",
"version": "2.0.4",
"version": "2.0.5",
"description": "Storybook distribution for styleguide as a deliverable",
"author": "github/frontend",
"license": "MIT",
Expand Down Expand Up @@ -117,6 +117,7 @@
},
"optionalDependencies": {
"string-width": "4.2.2",
"strip-ansi": "6.0.0"
"strip-ansi": "6.0.0",
"wrap-ansi": "7.0.0"
}
}
6 changes: 4 additions & 2 deletions package.tpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "my-styleguide",
"displayName": "📖 Storybox",
"version": "0.0.1",
"storyboxVersion": "2.0.4",
"storyboxVersion": "2.0.5",
"description": "A brand new styleguide project",
"author": "you",
"type": "module",
Expand Down Expand Up @@ -67,11 +67,13 @@
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@vitejs/plugin-react": "^4.0.0",
"vite": "^4.3.2"
},
"optionalDependencies": {
"string-width": "4.2.2",
"strip-ansi": "6.0.0"
"strip-ansi": "6.0.0",
"wrap-ansi": "7.0.0"
}
}

1 comment on commit e98a0a0

@vercel
Copy link

@vercel vercel bot commented on e98a0a0 Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.