From 38cf0f0c60e9bcf8c5572b11c6804085db356a5e Mon Sep 17 00:00:00 2001 From: Rob Larsen Date: Tue, 9 Apr 2024 10:22:16 -0400 Subject: [PATCH] Updates for gulp 5 (#3105) * Updates for gulp 5 * .DS_Store ignored from copy operations --- dist/css/style.css | 2 +- dist/package.json | 8 ++++---- gulpfile.mjs | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/dist/css/style.css b/dist/css/style.css index 654e8767..485c0384 100644 --- a/dist/css/style.css +++ b/dist/css/style.css @@ -1,4 +1,4 @@ -/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */ +/*! HTML5 Boilerplate v9.0.0 | MIT License | https://html5boilerplate.com/ */ /* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */ /* diff --git a/dist/package.json b/dist/package.json index 5353ddfd..b7438a8d 100644 --- a/dist/package.json +++ b/dist/package.json @@ -15,10 +15,10 @@ }, "devDependencies": { "copy-webpack-plugin": "^11.0.0", - "html-webpack-plugin": "^5.5.3", - "webpack": "^5.88.2", + "html-webpack-plugin": "^5.6.0", + "webpack": "^5.91.0", "webpack-cli": "^5.1.4", - "webpack-dev-server": "^4.15.1", - "webpack-merge": "^5.9.0" + "webpack-dev-server": "^5.0.4", + "webpack-merge": "^5.10.0" } } diff --git a/gulpfile.mjs b/gulpfile.mjs index 2aa31011..a8df19fa 100644 --- a/gulpfile.mjs +++ b/gulpfile.mjs @@ -107,8 +107,10 @@ gulp.task('copy:misc', () => // (other tasks will handle the copying of these files) `!${dirs.src}/css/main.css`, `!${dirs.src}/index.html`, + `!**/.DS_Store` ], { + encoding: false, // Include hidden files by default dot: true, },