Skip to content

Commit c500759

Browse files
authored
chore(deps-dev): bump glob from 8.1.0 to 9.2.1 (#2868)
Closes #2867
1 parent f141b40 commit c500759

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"eslint-plugin-prettier": "=4.2.1",
8787
"expect": "^29.0.3",
8888
"fetch-mock": "=9.11.0",
89-
"glob": "=8.1.0",
89+
"glob": "=9.2.1",
9090
"husky": "^8.0.1",
9191
"inspectpack": "=4.7.1",
9292
"install": "=0.13.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]);

test/specmap/refs.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import path from 'path';
22
import cloneDeep from 'lodash/cloneDeep';
3-
import glob from 'glob';
3+
import { globSync } from 'glob';
44
import xmock from 'xmock';
55
import fs from 'fs';
66
import jsYaml from 'js-yaml';
@@ -283,7 +283,7 @@ describe('refs', () => {
283283
describe('handle cyclic references', () => {
284284
test('should resolve references as deeply as possible', () => {
285285
const dir = path.join(__dirname, 'data', 'cyclic');
286-
const caseFiles = glob.sync(`${dir}/**/*.js`);
286+
const caseFiles = globSync(`${dir}/**/*.js`);
287287
const cases = caseFiles
288288
.sort((f1, f2) => {
289289
// Sorts by group ('internal', 'external') before test case number

0 commit comments

Comments
 (0)