From e98a0a0669662945dcf6eec97b687f232319b190 Mon Sep 17 00:00:00 2001 From: Yann Gouffon Date: Tue, 6 Jun 2023 12:09:02 +0200 Subject: [PATCH] Add missing files --- .bin/init.js | 1 + CHANGELOG.md | 7 ++++++- package.json | 5 +++-- package.tpl.json | 6 ++++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.bin/init.js b/.bin/init.js index 12a41a4..f8650f2 100644 --- a/.bin/init.js +++ b/.bin/init.js @@ -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`); diff --git a/CHANGELOG.md b/CHANGELOG.md index 33c1265..5c95175 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.5] - 2023-06-06 +### Fixed +- Fix missing files + ## [2.0.4] - 2023-06-06 ### Fixed - Fix generated package.json @@ -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 diff --git a/package.json b/package.json index f1d34ca..230f68b 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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" } } diff --git a/package.tpl.json b/package.tpl.json index 59bb8e1..eae36a4 100644 --- a/package.tpl.json +++ b/package.tpl.json @@ -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", @@ -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" } }