Skip to content

Commit

Permalink
build: update bunchee version
Browse files Browse the repository at this point in the history
  • Loading branch information
lovrozagar committed Jun 2, 2024
1 parent 8c3821b commit ad91104
Show file tree
Hide file tree
Showing 3 changed files with 231 additions and 130 deletions.
20 changes: 7 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
{
"name": "@renderui/core",
"version": "0.7.7",
"version": "0.8.2",
"private": false,
"description": "React UI library with highly modular and ready-out-of-the-box components",
"license": "MIT",
"author": "Lovro Žagar",
"type": "module",
"exports": {
"./accordion": "./dist/accordion.js",
"./aria": "./dist/aria.js",
"./aspect-ratio": "./dist/aspect-ratio.js",
"./box": "./dist/box.js",
"./button": "./dist/button.js",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "bunchee",
"build": "bunchee -m",
"dev": "vite dev"
},
"dependencies": {
Expand All @@ -45,7 +40,7 @@
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@renderui/constants": "^0.0.1",
"@renderui/hooks": "^0.1.6",
"@renderui/hooks": "^0.1.7",
"@renderui/types": "^0.0.2",
"@renderui/utils": "^0.1.8",
"cmdk": "^0.2.1",
Expand All @@ -60,7 +55,7 @@
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "^10.4.17",
"bunchee": "^4.4.8",
"bunchee": "^5.1.5",
"eslint": "^8.57.0",
"eslint-config-hardcore": "^45.3.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
Expand All @@ -69,7 +64,6 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.2",
"typescript": "^5.3.0",
"vite": "^5.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/button/hooks/use-button.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useMergedRef } from '@renderui/hooks'
import { useMergedRef } from '@renderui/hooks/use-merged-ref'
import { chain } from '@renderui/utils/chain'
import { cn } from '@renderui/utils/cn'
import React from 'react'
Expand Down
Loading

0 comments on commit ad91104

Please sign in to comment.