mirror of
https://github.com/penpot/penpot.git
synced 2025-03-09 22:31:50 -05:00
✨ Add animate.css as library
This commit is contained in:
parent
58afa7498e
commit
c98f2628f0
4 changed files with 12 additions and 1 deletions
|
@ -234,7 +234,11 @@ gulp.task("scss:modules", function () {
|
||||||
gulp.task("scss:main", function () {
|
gulp.task("scss:main", function () {
|
||||||
return gulp
|
return gulp
|
||||||
.src(paths.resources + "styles/main-default.scss")
|
.src(paths.resources + "styles/main-default.scss")
|
||||||
.pipe(gulpSass.sync().on("error", gulpSass.logError))
|
.pipe(gulpSass.sync({
|
||||||
|
includePaths: [
|
||||||
|
"./node_modules/animate.css"
|
||||||
|
]
|
||||||
|
}))
|
||||||
.pipe(gulpPostcss([autoprefixer]))
|
.pipe(gulpPostcss([autoprefixer]))
|
||||||
.pipe(gulp.dest(paths.output + "css/"));
|
.pipe(gulp.dest(paths.output + "css/"));
|
||||||
});
|
});
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
"@storybook/react": "^7.5.3",
|
"@storybook/react": "^7.5.3",
|
||||||
"@storybook/react-vite": "^7.5.3",
|
"@storybook/react-vite": "^7.5.3",
|
||||||
"@storybook/testing-library": "^0.2.2",
|
"@storybook/testing-library": "^0.2.2",
|
||||||
|
"animate.css": "^4.1.1",
|
||||||
"autoprefixer": "^10.4.15",
|
"autoprefixer": "^10.4.15",
|
||||||
"concurrently": "^8.2.2",
|
"concurrently": "^8.2.2",
|
||||||
"cypress": "^10.3.0",
|
"cypress": "^10.3.0",
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
@import "common/dependencies/z-index";
|
@import "common/dependencies/z-index";
|
||||||
@import "common/dependencies/highlightjs-theme";
|
@import "common/dependencies/highlightjs-theme";
|
||||||
|
|
||||||
|
@import "animate";
|
||||||
@import "common/refactor/color-defs.scss";
|
@import "common/refactor/color-defs.scss";
|
||||||
@import "common/refactor/themes.scss";
|
@import "common/refactor/themes.scss";
|
||||||
@import "common/refactor/design-tokens.scss";
|
@import "common/refactor/design-tokens.scss";
|
||||||
|
|
|
@ -3249,6 +3249,11 @@ aggregate-error@^3.0.0:
|
||||||
clean-stack "^2.0.0"
|
clean-stack "^2.0.0"
|
||||||
indent-string "^4.0.0"
|
indent-string "^4.0.0"
|
||||||
|
|
||||||
|
animate.css@^4.1.1:
|
||||||
|
version "4.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/animate.css/-/animate.css-4.1.1.tgz#614ec5a81131d7e4dc362a58143f7406abd68075"
|
||||||
|
integrity sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==
|
||||||
|
|
||||||
ansi-colors@^1.0.1:
|
ansi-colors@^1.0.1:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9"
|
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9"
|
||||||
|
|
Loading…
Add table
Reference in a new issue