-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update dependencies * chore: update dependencies * fix: fix typo * fix(docs): add missing CSS * docs(wedges): add changesets
- Loading branch information
1 parent
a7ffd3a
commit 6287126
Showing
8 changed files
with
2,203 additions
and
2,275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@lemonsqueezy/wedges": patch | ||
--- | ||
|
||
update dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,33 +17,35 @@ | |
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --passWithNoTests", | ||
"prepare": "husky", | ||
"version": "changeset version", | ||
"version:dev": "changeset version --snapshop --no-git-tag --tag dev", | ||
"version:dev": "changeset version --snapshot --no-git-tag --tag dev", | ||
"release": "pnpm build && changeset publish", | ||
"release:dev": "pnpm build && changeset publish --snapshot --no-git-tag --tag dev" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.1", | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@ianvs/prettier-plugin-sort-imports": "^4.1.1", | ||
"@testing-library/react": "^14.2.1", | ||
"@ianvs/prettier-plugin-sort-imports": "^4.2.1", | ||
"@testing-library/react": "^15.0.7", | ||
"@types/jest": "^29.5.12", | ||
"@types/node": "^20.11.16", | ||
"@types/react": "^18.2.55", | ||
"@types/react-dom": "^18.2.19", | ||
"@types/node": "^20.12.11", | ||
"@types/react": "^18.3.1", | ||
"@types/react-dom": "^18.3.0", | ||
"@wedges/eslint-config": "workspace:*", | ||
"husky": "^9.0.10", | ||
"husky": "^9.0.11", | ||
"jest": "^29.7.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-tailwindcss": "^0.5.11", | ||
"react": "^18.2.0", | ||
"react-dom": "18.2.0", | ||
"rimraf": "^5.0.5", | ||
"tailwindcss": "3.4.1", | ||
"prettier-plugin-tailwindcss": "^0.5.14", | ||
"react": "^18.3.1", | ||
"react-dom": "18.3.1", | ||
"rimraf": "^5.0.6", | ||
"tailwindcss": "3.4.3", | ||
"ts-jest": "^29.1.2", | ||
"turbo": "^1.13.3", | ||
"typescript": "^5.3.3" | ||
"typescript": "^5.4.5", | ||
"tailwind-merge": "^2.3.0", | ||
"clsx": "^2.1.1" | ||
}, | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,15 +16,8 @@ | |
"radix", | ||
"react", | ||
"responsive", | ||
"tailwindcss", | ||
"ui" | ||
"tailwindcss" | ||
], | ||
"license": "MIT", | ||
"author": { | ||
"name": "Lemon Squeezy", | ||
"email": "[email protected]", | ||
"url": "https://lemonsqueezy.com/wedges" | ||
}, | ||
"homepage": "https://lemonsqueezy.com/wedges", | ||
"bugs": { | ||
"url": "https://github.com/lmsqueezy/wedges/issues" | ||
|
@@ -34,17 +27,14 @@ | |
"url": "https://github.com/lmsqueezy/wedges.git", | ||
"directory": "packages/wedges" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
"license": "MIT", | ||
"author": { | ||
"name": "Lemon Squeezy", | ||
"email": "[email protected]", | ||
"url": "https://lemonsqueezy.com/wedges" | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"sideEffects": false, | ||
"type": "module", | ||
"main": "./dist/cjs/index.cjs", | ||
"types": "./dist/cjs/index.d.cts", | ||
"module": "./dist/esm/index.js", | ||
"exports": { | ||
".": { | ||
"require": { | ||
|
@@ -57,29 +47,25 @@ | |
} | ||
} | ||
}, | ||
"sideEffects": false, | ||
"main": "./dist/cjs/index.cjs", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/cjs/index.d.cts", | ||
"files": [ | ||
"dist", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"", | ||
"build:cjs": "tsup --format cjs --external react", | ||
"build:esm": "tsup --format esm --external react", | ||
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"", | ||
"build:watch:esm": "npm run build:esm -- --watch", | ||
"build:watch:cjs": "npm run build:cjs -- --watch", | ||
"build:watch": "concurrently \"npm:build:watch:*\"", | ||
"dev": "npm run build:watch", | ||
"build:watch:cjs": "npm run build:cjs -- --watch", | ||
"build:watch:esm": "npm run build:esm -- --watch", | ||
"clean": "rimraf .turbo node_modules dist", | ||
"dev": "npm run build:watch", | ||
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'", | ||
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix" | ||
}, | ||
"devDependencies": { | ||
"@ianvs/prettier-plugin-sort-imports": "^4.1.1", | ||
"@swc/core": "^1.4.0", | ||
"@types/color": "^3.0.6", | ||
"@types/lodash.omit": "^4.5.9", | ||
"@wedges/eslint-config": "workspace:*", | ||
"concurrently": "^8.2.2", | ||
"prettier-plugin-tailwindcss": "^0.5.11", | ||
"tsup": "^8.0.1" | ||
}, | ||
"dependencies": { | ||
"@iconicicons/react": "latest", | ||
"@radix-ui/react-avatar": "^1.0.4", | ||
|
@@ -95,14 +81,22 @@ | |
"@radix-ui/react-tabs": "^1.0.4", | ||
"@radix-ui/react-toggle-group": "^1.0.4", | ||
"@radix-ui/react-tooltip": "^1.0.7", | ||
"clsx": "^2.1.0", | ||
"clsx": "^2.1.1", | ||
"color": "^4.2.3", | ||
"color2k": "^2.0.3", | ||
"cva": "1.0.0-beta.1", | ||
"deepmerge": "^4.3.1", | ||
"flat": "^6.0.1", | ||
"lodash.omit": "^4.5.0", | ||
"tailwind-merge": "^2.2.1" | ||
"tailwind-merge": "^2.3.0" | ||
}, | ||
"devDependencies": { | ||
"@swc/core": "^1.5.5", | ||
"@types/color": "^3.0.6", | ||
"@types/lodash.omit": "^4.5.9", | ||
"@wedges/eslint-config": "workspace:*", | ||
"concurrently": "^8.2.2", | ||
"tsup": "^8.0.2" | ||
}, | ||
"peerDependencies": { | ||
"@types/react": "*", | ||
|
@@ -118,5 +112,8 @@ | |
"@types/react-dom": { | ||
"optional": true | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.