Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cdubz committed May 10, 2024
1 parent 3a5c376 commit 2865cda
Show file tree
Hide file tree
Showing 64 changed files with 1,098 additions and 3,561 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ whitenoise = "*"
django-taggit = "*"
django-qr-code = "*"
django-dbsettings = "*"
django-import-export = "~=3.0"
django-import-export = "*"

[dev-packages]
coveralls = "*"
Expand Down
12 changes: 6 additions & 6 deletions babybuddy/static_src/fontello/css/babybuddy-embedded.css

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions babybuddy/static_src/fontello/css/babybuddy.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@font-face {
font-family: 'babybuddy';
src: url('../font/babybuddy.eot?7641592');
src: url('../font/babybuddy.eot?7641592#iefix') format('embedded-opentype'),
url('../font/babybuddy.woff2?7641592') format('woff2'),
url('../font/babybuddy.woff?7641592') format('woff'),
url('../font/babybuddy.ttf?7641592') format('truetype'),
url('../font/babybuddy.svg?7641592#babybuddy') format('svg');
src: url('../font/babybuddy.eot?67957580');
src: url('../font/babybuddy.eot?67957580#iefix') format('embedded-opentype'),
url('../font/babybuddy.woff2?67957580') format('woff2'),
url('../font/babybuddy.woff?67957580') format('woff'),
url('../font/babybuddy.ttf?67957580') format('truetype'),
url('../font/babybuddy.svg?67957580#babybuddy') format('svg');
font-weight: normal;
font-style: normal;
}
Expand All @@ -15,7 +15,7 @@
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'babybuddy';
src: url('../font/babybuddy.svg?7641592#babybuddy') format('svg');
src: url('../font/babybuddy.svg?67957580#babybuddy') format('svg');
}
}
*/
Expand Down
10 changes: 5 additions & 5 deletions babybuddy/static_src/fontello/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@
}
@font-face {
font-family: 'babybuddy';
src: url('./font/babybuddy.eot?82997938');
src: url('./font/babybuddy.eot?82997938#iefix') format('embedded-opentype'),
url('./font/babybuddy.woff?82997938') format('woff'),
url('./font/babybuddy.ttf?82997938') format('truetype'),
url('./font/babybuddy.svg?82997938#babybuddy') format('svg');
src: url('./font/babybuddy.eot?26282519');
src: url('./font/babybuddy.eot?26282519#iefix') format('embedded-opentype'),
url('./font/babybuddy.woff?26282519') format('woff'),
url('./font/babybuddy.ttf?26282519') format('truetype'),
url('./font/babybuddy.svg?26282519#babybuddy') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down
Binary file modified babybuddy/static_src/fontello/font/babybuddy.eot
Binary file not shown.
Binary file modified babybuddy/static_src/fontello/font/babybuddy.ttf
Binary file not shown.
Binary file modified babybuddy/static_src/fontello/font/babybuddy.woff
Binary file not shown.
Binary file modified babybuddy/static_src/fontello/font/babybuddy.woff2
Binary file not shown.
1 change: 0 additions & 1 deletion gulpfile.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const config = {
],
app: [
"babybuddy/static_src/js/babybuddy.js",
"api/static_src/js/*.js",
"core/static_src/js/*.js",
"dashboard/static_src/js/*.js",
],
Expand Down
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,18 +149,18 @@ function docsWatch() {
function extras() {
return all(
gulp
.src(config.extrasConfig.fonts.files)
.src(config.extrasConfig.fonts.files, { encoding: false })
.pipe(gulp.dest(config.extrasConfig.fonts.dest)),
gulp
.src(config.extrasConfig.images.files)
.src(config.extrasConfig.images.files, { encoding: false })
.pipe(flatten({ subPath: 3 }))
.pipe(gulp.dest(config.extrasConfig.images.dest)),
gulp
.src(config.extrasConfig.logo.files)
.src(config.extrasConfig.logo.files, { encoding: false })
.pipe(flatten({ subPath: 3 }))
.pipe(gulp.dest(config.extrasConfig.logo.dest)),
gulp
.src(config.extrasConfig.root.files)
.src(config.extrasConfig.root.files, { encoding: false })
.pipe(gulp.dest(config.extrasConfig.root.dest)),
);
}
Expand Down Expand Up @@ -273,7 +273,7 @@ function test(cb) {
*/
function updateGlyphs() {
return gulp
.src(config.glyphFontConfig.configFile)
.src(config.glyphFontConfig.configFile, { encoding: false })
.pipe(fontello({ assetsOnly: false }))
.pipe(gulp.dest(config.glyphFontConfig.dest));
}
Expand Down

0 comments on commit 2865cda

Please sign in to comment.