Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
VOTE-589 Update Hugo to 0.121
Browse files Browse the repository at this point in the history
Remove gulp-webp
Add overrides for vulnerable dependencies
  • Loading branch information
rayestrada committed Dec 5, 2023
1 parent 65f7a8c commit 23c391b
Show file tree
Hide file tree
Showing 7 changed files with 2,200 additions and 4,078 deletions.
2 changes: 1 addition & 1 deletion .hugo-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.107.0
0.121.0
Binary file added assets/img/eac-logo.webp
Binary file not shown.
Binary file added assets/img/us_flag_small.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion config/_default/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publishDir": "tmp/public",
"title": "Voter Registration",
"baseURL": "",
"disableKinds": ["taxonomy", "taxonomyTerm", "section"],
"disableKinds": ["taxonomy", "section"],
"security": {
"funcs": {
"getenv": [
Expand Down
5 changes: 2 additions & 3 deletions gulp/images.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
var gulp = require('gulp');
const webp = require('gulp-webp');
var log = require('fancy-log');
var colors = require('ansi-colors');

Expand All @@ -18,5 +17,5 @@ gulp.task('images', gulp.parallel(
return gulp.src([
'./assets/img/**/*',
'./node_modules/@uswds/uswds/dist/img/**/*',
]).pipe(webp()).pipe(gulp.dest('./static/assets/img'));
}));
]).pipe(gulp.dest('./static/assets/img'));
}));
Loading

0 comments on commit 23c391b

Please sign in to comment.