Updates for gulp 5 (#3105)

* Updates for gulp 5

* .DS_Store ignored from copy operations
This commit is contained in:
Rob Larsen
2024-04-09 10:22:16 -04:00
committed by GitHub
parent d00a4b9fda
commit 38cf0f0c60
3 changed files with 7 additions and 5 deletions

2
dist/css/style.css vendored
View File

@@ -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 */
/*

8
dist/package.json vendored
View File

@@ -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"
}
}

View File

@@ -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,
},