Skip to content

Commit 45e0592

Browse files
gcampbell-msftHannia Valera
andauthored
fix dependabot for serialize-javascript (#4831)
* fix dependabot for serialize-javascript * Triggering pipeline * fixing lint errors --------- Co-authored-by: Hannia Valera <[email protected]>
1 parent 5282100 commit 45e0592

3 files changed

Lines changed: 1023 additions & 806 deletions

File tree

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'use strict';
77

88
const gulp = require('gulp');
9-
const eslint = require('gulp-eslint');
9+
const eslint = require('gulp-eslint-new');
1010
const fs = require('fs');
1111
const nls = require('vscode-nls-dev');
1212
const path = require('path');
@@ -318,7 +318,7 @@ const lintReporter = results => {
318318
gulp.task('lint', function () {
319319
// Un-comment these parts for applying auto-fix.
320320
return gulp.src(allTypeScript)
321-
.pipe(eslint({ configFile: ".eslintrc.js" /*, fix: true */}))
321+
.pipe(eslint({ overrideConfigFile: ".eslintrc.js" /*, fix: true */}))
322322
.pipe(eslint.format(lintReporter, process.stderr))
323323
//.pipe(gulp.dest(file => file.base))
324324
.pipe(eslint.failAfterError());

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4182,7 +4182,7 @@
41824182
"@types/js-yaml": "^4.0.0",
41834183
"@types/json5": "~0.0.30",
41844184
"@types/lodash": "4.14.202",
4185-
"@types/mocha": "^8.2.2",
4185+
"@types/mocha": "^10.0.10",
41864186
"@types/node": "^20.14.2",
41874187
"@types/rimraf": "^3.0.0",
41884188
"@types/sinon": "~9.0.10",
@@ -4191,29 +4191,29 @@
41914191
"@types/which": "~2.0.0",
41924192
"@types/xml2js": "^0.4.8",
41934193
"@types/uuid": "~8.3.3",
4194-
"@typescript-eslint/eslint-plugin": "^5.25.0",
4195-
"@typescript-eslint/eslint-plugin-tslint": "^5.25.0",
4196-
"@typescript-eslint/parser": "^5.25.0",
4194+
"@typescript-eslint/eslint-plugin": "^5.59.11",
4195+
"@typescript-eslint/eslint-plugin-tslint": "^5.59.11",
4196+
"@typescript-eslint/parser": "^5.59.11",
41974197
"@vscode/test-electron": "^2.3.8",
41984198
"@vscode/vsce": "^3.1.0",
41994199
"chai": "^4.3.0",
42004200
"chai-as-promised": "^7.1.1",
42014201
"chai-string": "^1.5.0",
4202-
"eslint": "^8.15.0",
4202+
"eslint": "^8.42.0",
42034203
"eslint-plugin-import": "^2.29.1",
42044204
"eslint-plugin-jsdoc": "^48.2.8",
42054205
"event-stream": "^4.0.1",
42064206
"fs-extra": "^9.1.0",
42074207
"glob": "^7.1.6",
42084208
"gulp": "^4.0.2",
4209-
"gulp-eslint": "^6.0.0",
4209+
"gulp-eslint-new": "^1.9.1",
42104210
"gulp-filter": "^6.0.0",
4211-
"gulp-mocha": "^8.0.0",
4211+
"gulp-mocha": "^10.0.1",
42124212
"gulp-sourcemaps": "^3.0.0",
42134213
"gulp-typescript": "^5.0.1",
42144214
"husky": "^4.3.8",
42154215
"jsonc-parser": "^3.0.0",
4216-
"mocha": "^8.3.2",
4216+
"mocha": "^11.7.5",
42174217
"module-alias": "^2.2.2",
42184218
"node-loader": "^1.0.2",
42194219
"parse-git-config": "^3.0.0",
@@ -4226,7 +4226,7 @@
42264226
"vscode-cmake-tools": "^1.5.0",
42274227
"vscode-nls-dev": "^3.3.2",
42284228
"webpack": "^5.104.1",
4229-
"webpack-cli": "^4.5.0"
4229+
"webpack-cli": "^5.1.4"
42304230
},
42314231
"dependencies": {
42324232
"@friedemannsommer/lcov-parser": "^5.0.0",
@@ -4264,7 +4264,8 @@
42644264
"**/braces": "^3.0.3",
42654265
"js-yaml": "^4.1.1",
42664266
"tmp": "^0.2.4",
4267-
"jws": "^4.0.1"
4267+
"jws": "^4.0.1",
4268+
"serialize-javascript": "^7.0.4"
42684269
},
42694270
"packageManager": "[email protected]"
42704271
}

0 commit comments

Comments
 (0)