Skip to content

Commit

Permalink
Bump node from 22.11 to 22.12 (cookiecutter#5583)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Dec 10, 2024
1 parent 9ce9390 commit 736ff76
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ jobs:
run: uv sync
- uses: actions/setup-node@v4
with:
node-version: "22.11"
node-version: "22.12"
- name: Bare Metal ${{ matrix.script.name }}
run: sh tests/test_bare.sh ${{ matrix.script.args }}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/node:22.11-bookworm-slim
FROM docker.io/node:22.12-bookworm-slim

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import browserSyncLib from 'browser-sync';
import concat from 'gulp-concat';
import tildeImporter from 'node-sass-tilde-importer';
import cssnano from 'cssnano';
import imagemin from 'gulp-imagemin';
import pixrem from 'pixrem';
import plumber from 'gulp-plumber';
import postcss from 'gulp-postcss';
Expand Down Expand Up @@ -100,7 +99,8 @@ function vendorScripts() {
}

// Image compression
function imgCompression() {
async function imgCompression() {
const imagemin = (await import("gulp-imagemin")).default;
return src(`${paths.images}/*`)
.pipe(imagemin()) // Compresses PNG, JPEG, GIF and SVG images
.pipe(dest(paths.images));
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "22.11"
"node": "22.12"
},
"browserslist": [
"last 2 versions"
Expand Down

0 comments on commit 736ff76

Please sign in to comment.