@driveflux/beam 2.0.6 → 2.0.7
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/copy-required-css.js +8 -0
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@driveflux/beam",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./accordion": {
|
|
@@ -197,7 +197,8 @@
|
|
|
197
197
|
}
|
|
198
198
|
},
|
|
199
199
|
"files": [
|
|
200
|
-
"dist"
|
|
200
|
+
"dist",
|
|
201
|
+
"copy-required-css.js"
|
|
201
202
|
],
|
|
202
203
|
"dependencies": {
|
|
203
204
|
"@radix-ui/react-accordion": "^1.2.10",
|
|
@@ -269,14 +270,14 @@
|
|
|
269
270
|
"react-dom": "19.1.0"
|
|
270
271
|
},
|
|
271
272
|
"scripts": {
|
|
272
|
-
"build": "pnpm tailwind && fab",
|
|
273
|
+
"build": "node ./copy-required-css.js && pnpm tailwind && fab",
|
|
273
274
|
"clean": "fab clean",
|
|
274
275
|
"tailwind": "pnpx @tailwindcss/cli -i ./src/build.css -o ./src/styles.css",
|
|
275
276
|
"tailwind:watch": "pnpm tailwind --watch",
|
|
276
277
|
"storybook": "tailwind && storybook dev -p 6006",
|
|
277
278
|
"build-storybook": "storybook build",
|
|
278
279
|
"down": "pnpx shadcn-ui@latest add",
|
|
279
|
-
"build:js": "pnpm tailwind && fab -t esm",
|
|
280
|
+
"build:js": "node ./copy-required-css.js && pnpm tailwind && fab -t esm",
|
|
280
281
|
"build:types": "fab -t types",
|
|
281
282
|
"type-check": "tsc --noEmit",
|
|
282
283
|
"check": "biome check --write ./src",
|