Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat #88 - Fix type exports for rollup #89

Merged
merged 2 commits into from
Sep 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dassana-io/web-components",
"version": "0.3.0",
"version": "0.3.1",
"publishConfig": {
"registry": "https://npm.pkg.github.com/dassana-io"
},
Expand Down
1 change: 1 addition & 0 deletions src/components/Form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ Form.SubmitButton = FormSubmitButton
Form.Input = FormInput
Form.Select = FormSelect

export * from './types'
export default Form
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ export { default as Skeleton } from './Skeleton'
export { default as Table } from './Table'
export { default as Tag } from './Tag'
export { default as Toggle } from './Toggle'
export * from './types'
6 changes: 5 additions & 1 deletion tsconfig.rollup.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"extends": "./tsconfig.json",
"include": ["components/**/*", "src/custom.d.ts"],
"exclude": ["components/**/*.stories.tsx", "components/**/*.test.tsx", "components/**/*fixtures"]
"exclude": [
"components/**/*.stories.tsx",
"components/**/*.test.tsx",
"components/**/*fixtures"
]
}