Skip to content

Commit 8155586

Browse files
committed
Merge branch 'master' into beta
2 parents 5b884ef + c500759 commit 8155586

File tree

4 files changed

+133
-68
lines changed

4 files changed

+133
-68
lines changed

package-lock.json

+127-62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"eslint-plugin-prettier": "=4.2.1",
9090
"expect": "^29.0.3",
9191
"fetch-mock": "=9.11.0",
92-
"glob": "=8.1.0",
92+
"glob": "=9.2.1",
9393
"husky": "^8.0.1",
9494
"inspectpack": "=4.7.1",
9595
"install": "=0.13.0",
@@ -103,7 +103,7 @@
103103
"node-fetch": "^2.6.7",
104104
"npm-run-all": "=4.1.5",
105105
"prettier": "^2.3.0",
106-
"rimraf": "=4.1.2",
106+
"rimraf": "=4.2.0",
107107
"source-map-explorer": "^2.5.3",
108108
"terser-webpack-plugin": "^5.0.3",
109109
"webpack": "=5.75.0",

test/specmap/complex.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import path from 'path';
2-
import glob from 'glob';
2+
import { globSync } from 'glob';
33
import xmock from 'xmock';
44

55
import mapSpec, { plugins } from '../../src/specmap/index.js';
@@ -27,7 +27,7 @@ describe('complex', () => {
2727
xapp.restore();
2828

2929
const dir = path.join(__dirname, 'data', 'complex');
30-
const specFiles = glob.sync(`${dir}/**/*.json`);
30+
const specFiles = globSync(`${dir}/**/*.json`);
3131
const specs = specFiles
3232
.sort((f1, f2) => {
3333
const no1 = Number(path.basename(f1).split('.')[0]);

0 commit comments

Comments
 (0)