From 1da5d94e8c331f721502008c4721f9d6f2138b16 Mon Sep 17 00:00:00 2001 From: Nicko Winner-Arroyo Date: Wed, 2 Sep 2020 17:41:32 -0400 Subject: [PATCH 1/3] Readme Fixes --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index eac6c18..cf9a12d 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,9 @@ Follow the [Getting Started with HelixUI](https://helixdesignsystem.github.io/he ``` ### Our Implementation +```js + import { Disclosure, Div, Modal } from '@helix-design-system/helix-react'; +``` ```jsx Confirm + ``` ## Guiding Principles From fa894a1ff5f5a59d87ccb57d52772649a4da7341 Mon Sep 17 00:00:00 2001 From: Nicko Winner-Arroyo Date: Wed, 2 Sep 2020 18:21:26 -0400 Subject: [PATCH 2/3] attempt to fix issue where dist files are now showing up in the package --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 88e6bb0..320dbe9 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,9 @@ "main": "dist/helix-react.js", "module": "dist/helix-react.esm.js", "unpkg": "dist/helix-react.js", + "files": [ + "dist/" + ], "scripts": { "install:clean": "rm -rf node_modules && yarn install", "build": "microbundle -i src/index.mjs --external react,react-dom --name HelixReact --jsx React.createElement --jsxFragment React.Fragment --compress false --sourcemap false", From 5d538a4acbf5330036bc77d4e1d6c2cf02f2f87e Mon Sep 17 00:00:00 2001 From: Nicko Winner-Arroyo Date: Wed, 2 Sep 2020 18:34:05 -0400 Subject: [PATCH 3/3] bump peer deps to latest version of helix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 320dbe9..62e4c2c 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,7 @@ "classnames": "^2.x" }, "peerDependencies": { - "helix-ui": "^0.23.0", + "helix-ui": "^0.24.0", "prop-types": "^15.7.2", "react": "^16.6.3" },