Skip to content

Commit

Permalink
upgrade back to mantine 7.5.3, but with esm types in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Feb 20, 2024
1 parent daa0be3 commit 22cff28
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 54 deletions.
10 changes: 5 additions & 5 deletions apps/mantine-react-table-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mantine/code-highlight": "7.5.2",
"@mantine/core": "7.5.2",
"@mantine/dates": "7.5.2",
"@mantine/hooks": "7.5.2",
"@mantine/modals": "7.5.2",
"@mantine/code-highlight": "7.5.3",
"@mantine/core": "7.5.3",
"@mantine/dates": "7.5.3",
"@mantine/hooks": "7.5.3",
"@mantine/modals": "7.5.3",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.1.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/mantine-react-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
],
"main": "dist/index.cjs",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.cts",
"types": "dist/index.esm.d.mts",
"exports": {
".": {
"import": {
Expand Down Expand Up @@ -82,9 +82,9 @@
"@babel/core": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@faker-js/faker": "^8.4.1",
"@mantine/core": "7.5.2",
"@mantine/dates": "7.5.2",
"@mantine/hooks": "7.5.2",
"@mantine/core": "7.5.3",
"@mantine/dates": "7.5.3",
"@mantine/hooks": "7.5.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/mantine-react-table/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default [
{
input: './dist/types/index.d.ts',
output: [
{ file: `./${pkg.types}`, format: 'cjs' },
{ file: `./dist/index.d.cts`, format: 'cjs' },
{ file: './dist/index.esm.d.mts', format: 'esm' },
],
plugins: [
Expand Down
88 changes: 44 additions & 44 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 22cff28

Please sign in to comment.