Skip to content

Commit cb21e9b

Browse files
committed
Fix build errors after DB update typescript from 4.9.5 to 5.2.2
Due API incompatibilities this fixup rolls back the following updates: - mkdirp back to ^1.0.4 (See #3229 including fixup) - @types/mkdirp back to ^1.0.2 (See #3232) Signed-off-by: Victor Rubezhny <vrubezhny@redhat.com>
1 parent bb4a866 commit cb21e9b

File tree

3 files changed

+20
-58
lines changed

3 files changed

+20
-58
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"json-schema": "^0.4.0",
8989
"lodash": "^4.17.21",
9090
"make-fetch-happen": "^13.0.0",
91-
"mkdirp": "^3.0.1",
91+
"mkdirp": "^1.0.4",
9292
"rxjs": "^7.8.1",
9393
"semver": "^7.5.2",
9494
"stacktrace-parser": "^0.1.10",
@@ -114,7 +114,7 @@
114114
"@types/fs-extra": "^11.0.1",
115115
"@types/lodash": "^4.14.177",
116116
"@types/make-fetch-happen": "^10.0.1",
117-
"@types/mkdirp": "^2.0.0",
117+
"@types/mkdirp": "^1.0.2",
118118
"@types/mocha": "^10.0.1",
119119
"@types/node": "^16.11.12",
120120
"@types/proxyquire": "^1.3.28",

test/coverage.ts

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

1010
import paths = require('path');
1111
import fs = require('fs');
12-
import { mkdirp } from 'mkdirp';
12+
import * as mkdirp from 'mkdirp';
1313
const istanbul = require('istanbul');
1414
const remapIstanbul = require('remap-istanbul');
1515

0 commit comments

Comments
 (0)