Skip to content

Commit

Permalink
Merge pull request #5 from zimmerman-team/chore/update-rollup-config
Browse files Browse the repository at this point in the history
Chore/update rollup config
  • Loading branch information
okorie2 authored Sep 1, 2024
2 parents 2d51a87 + 1a82178 commit 9bc51b8
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 5 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 ([email protected])
- v0.1.7 ([email protected])
- v0.1.6 ([email protected])
- v0.1.5 ([email protected])
- v0.1.4 ([email protected])
- v0.1.3 ([email protected])
- v0.1.2 ([email protected])
- 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 ([email protected])

---

# v0.1.1 (Sun Sep 01 2024)

- style: set button to nowrap ([email protected])
Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zimmerman-design-system",
"version": "0.1.1",
"version": "0.1.7",
"private": false,
"scripts": {
"_make-bundle": "rollup --config",
Expand Down Expand Up @@ -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 <[email protected]>",
"license": "MIT"
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const config = [
{
input: 'src/index.ts',
output: {
file: 'dist/zimmerman-DS.js',
file: 'zimmerman-DS.js',
format: 'esm',
sourcemap: true,
},
Expand All @@ -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() ]
Expand Down

0 comments on commit 9bc51b8

Please sign in to comment.