Skip to content

Commit 38cf0f0

Browse files
authored
Updates for gulp 5 (#3105)
* Updates for gulp 5 * .DS_Store ignored from copy operations
1 parent d00a4b9 commit 38cf0f0

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

dist/css/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */
1+
/*! HTML5 Boilerplate v9.0.0 | MIT License | https://html5boilerplate.com/ */
22

33
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
44
/*

dist/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
},
1616
"devDependencies": {
1717
"copy-webpack-plugin": "^11.0.0",
18-
"html-webpack-plugin": "^5.5.3",
19-
"webpack": "^5.88.2",
18+
"html-webpack-plugin": "^5.6.0",
19+
"webpack": "^5.91.0",
2020
"webpack-cli": "^5.1.4",
21-
"webpack-dev-server": "^4.15.1",
22-
"webpack-merge": "^5.9.0"
21+
"webpack-dev-server": "^5.0.4",
22+
"webpack-merge": "^5.10.0"
2323
}
2424
}

gulpfile.mjs

+2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,10 @@ gulp.task('copy:misc', () =>
107107
// (other tasks will handle the copying of these files)
108108
`!${dirs.src}/css/main.css`,
109109
`!${dirs.src}/index.html`,
110+
`!**/.DS_Store`
110111
],
111112
{
113+
encoding: false,
112114
// Include hidden files by default
113115
dot: true,
114116
},

0 commit comments

Comments
 (0)