Skip to content

Commit

Permalink
[sparkle] - feature: bump package to version 0.2.256 and add tailwind…
Browse files Browse the repository at this point in the history
…css-animate (#7927)

- Incremented the project version to 0.2.256 in both package-lock.json and package.json
 - Introduced the tailwindcss-animate plugin as a dependency to enhance UI with animations
 - Included tailwindcss-animate in the Tailwind CSS configuration plugins for use in the project styles

Co-authored-by: Jules <[email protected]>
  • Loading branch information
JulesBelveze and Jules authored Oct 7, 2024
1 parent 5559ab5 commit 438e0dd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
14 changes: 12 additions & 2 deletions sparkle/package-lock.json

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

3 changes: 2 additions & 1 deletion sparkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dust-tt/sparkle",
"version": "0.2.255",
"version": "0.2.256",
"scripts": {
"build": "rm -rf dist && npm run tailwind && npm run build:esm && npm run build:cjs",
"tailwind": "tailwindcss -i ./src/styles/tailwind.css -o dist/sparkle.css",
Expand Down Expand Up @@ -66,6 +66,7 @@
"tailwindcss": "^3.2.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5",
"tailwindcss-animate": "^1.0.7",
"typescript-transform-paths": "^3.4.7",
"uuid": "^9.0.1"
},
Expand Down
6 changes: 5 additions & 1 deletion sparkle/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,11 @@ module.exports = {
backgroundColor: ["dark"],
},
},
plugins: [require("@tailwindcss/forms"), require("tailwind-scrollbar-hide")],
plugins: [
require("@tailwindcss/forms"),
require("tailwind-scrollbar-hide"),
require("tailwindcss-animate"),
],
prefix: "s-",
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
safelist: [
Expand Down

0 comments on commit 438e0dd

Please sign in to comment.