Skip to content

Commit ea8ae39

Browse files
committed
change gulp-vinyl-zip dependency to @vscode/gulp-vinyl-zip
1 parent 8cfdb0a commit ea8ae39

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

gulp.d/tasks/pack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const ospath = require('node:path')
44
const vfs = require('vinyl-fs')
5-
const zip = require('gulp-vinyl-zip')
5+
const zip = require('@vscode/gulp-vinyl-zip')
66

77
module.exports = (src, dest, bundleName, onFinish) => () =>
88
vfs

gulp.d/tasks/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { pipeline, Transform, Writable } = require('node:stream')
99
const forEach = (write, final) => new Writable({ objectMode: true, write, final })
1010
const map = (transform, flush = undefined) => new Transform({ objectMode: true, transform, flush })
1111
const vfs = require('vinyl-fs')
12-
const zip = require('gulp-vinyl-zip')
12+
const zip = require('@vscode/gulp-vinyl-zip')
1313

1414
function getNextReleaseNumber ({ octokit, owner, repo, variant }) {
1515
const prefix = `${variant}-`

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"@fontsource/roboto": "~4.5",
2323
"@fontsource/roboto-mono": "~4.5",
2424
"@octokit/rest": "~18.0",
25+
"@vscode/gulp-vinyl-zip": "~2.5",
2526
"autoprefixer": "~10.4",
2627
"browser-pack-flat": "~3.5",
2728
"browserify": "~17.0",
@@ -43,7 +44,6 @@
4344
"gulp-postcss": "~9.0",
4445
"gulp-stylelint": "~13.0",
4546
"gulp-uglify": "~3.0",
46-
"gulp-vinyl-zip": "~2.5",
4747
"handlebars": "~4.7",
4848
"highlight.js": "9.18.3",
4949
"js-yaml": "~4.1",

0 commit comments

Comments
 (0)