Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/aura-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@
"@types/node": "^20.0.0",
"@types/shelljs": "^0.8.15",
"eslint": "^8.57.0",
"glob": "^7.2.3",
"glob": "^11.0.3",
"jest": "^29.7.0",
"jest-extended": "^0.11.5",
"mock-fs": "^5.5.0",
"prettier": "^2.0.5",
"ts-jest": "^29.2.6",
"typescript": "5.0.4"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path from 'path';
import fs from 'fs';
import glob from 'glob';
import { globSync } from 'glob';

// These unit tests check that specified dependencies in package.json do not use
// ^ or ~ in the version range, either because those packages do not use semver
Expand Down Expand Up @@ -28,7 +28,7 @@ if (fs.existsSync(monorepoConfigPath)) {
const monorepoConfig = readJsonFile(monorepoConfigPath);
if (monorepoConfig.packages && Array.isArray(monorepoConfig.packages)) {
monorepoConfig.packages.forEach((packageGlob: string) => {
const matches = glob.sync(packageGlob, {
const matches = globSync(packageGlob, {
cwd: monorepoRootPath,
});
matches.forEach((match) => {
Expand Down
Loading
Loading