diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a1bcde..66277d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# v0.1.8 (Sun Sep 01 2024) + +#### 🐛 Bug Fix + +- Chore/update rollup config [#4](https://github.com/zimmerman-team/zimmerman-design-system/pull/4) ([@okorie2](https://github.com/okorie2)) +- chore: set up config files to publish library [#3](https://github.com/zimmerman-team/zimmerman-design-system/pull/3) ([@okorie2](https://github.com/okorie2)) +- Chore/remove useless stories [#2](https://github.com/zimmerman-team/zimmerman-design-system/pull/2) ([@okorie2](https://github.com/okorie2)) +- chore: remove useless stories [#1](https://github.com/zimmerman-team/zimmerman-design-system/pull/1) ([@okorie2](https://github.com/okorie2)) + +#### ⚠️ Pushed to `main` + +- chore: change rollup output files (ellahokorie@gmail.com) +- v0.1.7 (ellahokorie@gmail.com) +- v0.1.6 (ellahokorie@gmail.com) +- v0.1.5 (ellahokorie@gmail.com) +- v0.1.4 (ellahokorie@gmail.com) +- v0.1.3 (ellahokorie@gmail.com) +- v0.1.2 (ellahokorie@gmail.com) +- chore: storybook deployment with github actions ([@okorie2](https://github.com/okorie2)) +- feat: add button component ([@okorie2](https://github.com/okorie2)) +- Initialize project using Create React App ([@okorie2](https://github.com/okorie2)) + +#### Authors: 2 + +- Ella ([@okorie2](https://github.com/okorie2)) +- okorie2 (ellahokorie@gmail.com) + +--- + # v0.1.1 (Sun Sep 01 2024) - style: set button to nowrap (ellahokorie@gmail.com) diff --git a/package.json b/package.json index 29f0cf7..b03f07a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zimmerman-design-system", - "version": "0.1.1", + "version": "0.1.7", "private": false, "scripts": { "_make-bundle": "rollup --config", @@ -91,9 +91,14 @@ "react": "^18.3.1", "react-dom": "^18.3.1" }, + "files": [ + "zimmerman-DS.d.ts", + "zimmerman-DS.js", + "zimmerman-DS.js.map" + ], "description": "A design system library that contains components shared across projects in the Zimmerman organisation", - "main": "dist/index.js", - "types": "dist/types/zimmerman-DS.d.ts", + "main": "zimmerman-DS.js", + "types": "zimmerman-DS.d.ts", "repository": "https://github.com/zimmerman-team/zimmerman-design-system.git", "author": "okorie2 ", "license": "MIT" diff --git a/rollup.config.mjs b/rollup.config.mjs index 76ca003..d15da01 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -8,7 +8,7 @@ const config = [ { input: 'src/index.ts', output: { - file: 'dist/zimmerman-DS.js', + file: 'zimmerman-DS.js', format: 'esm', sourcemap: true, }, @@ -17,7 +17,7 @@ const config = [ }, { input: 'dist/types/index.d.ts', output: { - file: 'dist/types/zimmerman-DS.d.ts', + file: 'zimmerman-DS.d.ts', format: 'es' }, plugins: [dts() ]