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

update the future release /dist reference path in package.json #3786

Merged
merged 1 commit into from
Jun 22, 2023
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
7 changes: 7 additions & 0 deletions .changeset/eight-socks-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@kaizen/components": patch
---

Updates the future release /dist reference path in package.json
- this will fix the imports for future components
- ie: `import {Workflow} from "@kaizen/components/future"
6 changes: 3 additions & 3 deletions packages/components/future/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"main": "../dist/__future__/index.js",
"module": "../dist/esm/__future__/index.js",
"types": "../dist/__future__/index.d.ts"
"main": "../dist/cjs/future.js",
"module": "../dist/esm/future.js",
"types": "../dist/esm/dts/__future__/index.d.ts"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is in a weird place though lol

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I figured we could take a crack at updating the output path or creating a future.d.ts when we loop back to the tooling health day :)

}