Skip to content

Commit d59a1c2

Browse files
authored
Merge pull request #112 from HelixDesignSystem/fixes-02
Fix for missing dist folder
2 parents a6ed7a6 + 5d538a4 commit d59a1c2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ Follow the [Getting Started with HelixUI](https://helixdesignsystem.github.io/he
8383
```
8484

8585
### Our Implementation
86+
```js
87+
import { Disclosure, Div, Modal } from '@helix-design-system/helix-react';
88+
```
8689

8790
```jsx
8891
<Disclosure
@@ -103,6 +106,7 @@ Follow the [Getting Started with HelixUI](https://helixdesignsystem.github.io/he
103106
<Button variant="primary">Confirm</Button>
104107
<Button>Cancel</Button>
105108
</footer>
109+
</Modal>
106110
```
107111

108112
## Guiding Principles

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"main": "dist/helix-react.js",
77
"module": "dist/helix-react.esm.js",
88
"unpkg": "dist/helix-react.js",
9+
"files": [
10+
"dist/"
11+
],
912
"scripts": {
1013
"install:clean": "rm -rf node_modules && yarn install",
1114
"build": "microbundle -i src/index.mjs --external react,react-dom --name HelixReact --jsx React.createElement --jsxFragment React.Fragment --compress false --sourcemap false",
@@ -64,7 +67,7 @@
6467
"classnames": "^2.x"
6568
},
6669
"peerDependencies": {
67-
"helix-ui": "^0.23.0",
70+
"helix-ui": "^0.24.0",
6871
"prop-types": "^15.7.2",
6972
"react": "^16.6.3"
7073
},

0 commit comments

Comments
 (0)