commerce-toolkit 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordion/accordion.d.ts +1 -1
- package/dist/components/accordion/index.d.ts +6 -6
- package/dist/components/alert/alert.d.ts +2 -2
- package/dist/components/alert/index.d.ts +8 -8
- package/dist/components/alert/index.d.ts.map +1 -1
- package/dist/components/alert/primitives/alert-button.d.ts +1 -1
- package/dist/components/alert/primitives/alert-close-button.d.ts +1 -1
- package/dist/components/animated-underline/index.d.ts +1 -1
- package/dist/components/badge/index.d.ts +1 -1
- package/dist/components/button/index.d.ts +1 -1
- package/dist/index.cjs +31 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1089 -756
- package/dist/index.js.map +1 -1
- package/dist/lib/index.d.ts +1 -1
- package/package.json +3 -2
package/dist/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { cn } from '
|
|
1
|
+
export { cn } from '../lib/utils';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commerce-toolkit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "A collection of modern, accessible commerce UI components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
"storybook": "^9.1.10",
|
|
117
117
|
"tailwindcss": "3",
|
|
118
118
|
"tailwindcss-animate": "^1.0.7",
|
|
119
|
+
"tsc-alias": "^1.8.16",
|
|
119
120
|
"typescript": "^5.9.3",
|
|
120
121
|
"typescript-eslint": "^8",
|
|
121
122
|
"vite": "^7.1.7",
|
|
@@ -125,7 +126,7 @@
|
|
|
125
126
|
"scripts": {
|
|
126
127
|
"dev": "vite",
|
|
127
128
|
"build": "vite build",
|
|
128
|
-
"build:lib": "vite build --config vite.config.lib.js && tsc --project tsconfig.lib.json && cp src/styles.css dist/styles.css",
|
|
129
|
+
"build:lib": "vite build --config vite.config.lib.js && tsc --project tsconfig.lib.json && tsc-alias -p tsconfig.lib.json && cp src/styles.css dist/styles.css",
|
|
129
130
|
"lint": "eslint .",
|
|
130
131
|
"format": "prettier --write .",
|
|
131
132
|
"format:check": "prettier --check .",
|