Skip to content

Commit

Permalink
Merge branch 'main' into package_bundler_config
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwinter07 authored Feb 3, 2025
2 parents 3afc6f9 + e4465ca commit ab1f427
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .changeset/spotty-lies-beg.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.70.15

### Patch Changes

- [#5492](https://github.com/cultureamp/kaizen-design-system/pull/5492) [`907da4c`](https://github.com/cultureamp/kaizen-design-system/commit/907da4c38413f4d6c7239da1a147684c4b651450) - Set fields in export so that Vitest can resolve to ESM modules instead of CJS.

## 1.70.14

### Patch Changes
Expand Down
54 changes: 53 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaizen/components",
"version": "1.70.14",
"version": "1.70.15",
"description": "Kaizen component library",
"author": "Geoffrey Chong <[email protected]>",
"homepage": "https://cultureamp.design",
Expand Down Expand Up @@ -30,6 +30,58 @@
"sideEffects": [
"styles.css"
],
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"./future": {
"import": "./dist/esm/future.mjs",
"require": "./dist/cjs/future.cjs",
"types": "./dist/types/__rc__/index.d.ts"
},
"./v1/actions": {
"import": "./dist/esm/actionsV1.mjs",
"require": "./dist/cjs/actionsV1.cjs",
"types": "./dist/types/v1-actions.d.ts"
},
"./v1/overlays": {
"import": "./dist/esm/overlaysV1.mjs",
"main": "./dist/cjs/overlaysV1.cjs",
"types": "./dist/types/v1-overlays.d.ts"
},
"./v2/actions": {
"import": "./dist/esm/actionsV2.mjs",
"require": "./dist/cjs/actionsV2.cjs",
"types": "./dist/types/v2-actions.d.ts"
},
"./v2/overlays": {
"import": "./dist/esm/overlaysV2.mjs",
"require": "./dist/cjs/overlaysV2.cjs",
"types": "./dist/types/v2-overlays.d.ts"
},
"./v3/actions": {
"import": "./dist/esm/actionsV3.mjs",
"require": "./dist/cjs/actionsV3.cjs",
"types": "./dist/types/v3-actions.d.ts"
},
"./v3/overlays": {
"import": "./dist/esm/overlaysV3.mjs",
"require": "./dist/cjs/overlaysV3.cjs",
"types": "./dist/types/v3-overlays.d.ts"
},
"./v3/react-aria": {
"import": "./dist/esm/reactAriaV3.mjs",
"require": "./dist/cjs/reactAriaV3.cjs",
"types": "./dist/types/__react-aria__/index.d.ts"
},
"./v3/react-aria-components": {
"import": "./dist/esm/reactAriaComponentsV3.mjs",
"require": "./dist/cjs/reactAriaComponentsV3.cjs",
"types": "./dist/types/__react-aria-components__/index.d.ts"
}
},
"bin": {
"kaizen-codemod": "./bin/codemod.sh"
},
Expand Down

0 comments on commit ab1f427

Please sign in to comment.