Skip to content

Commit

Permalink
add explicit dependency on minimatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ilia-db committed Sep 23, 2024
1 parent 51c00a2 commit 22c4041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/databricks-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,7 @@
"ansi-to-html": "^0.7.2",
"bcryptjs": "^2.4.3",
"lodash": "^4.17.21",
"minimatch": "^10.0.1",
"shell-quote": "^1.8.1",
"triple-beam": "^1.4.1",
"winston": "^3.11.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/databricks-vscode/src/bundle/BundleFileSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import path from "path";
import {BundleSchema} from "./types";
import {readFile, writeFile} from "fs/promises";
import {CachedValue} from "../locking/CachedValue";
import minimatch from "minimatch";
import {minimatch} from "minimatch";
import {WorkspaceFolderManager} from "../vscode-objs/WorkspaceFolderManager";

const rootFilePattern: string = "{bundle,databricks}.{yaml,yml}";
Expand Down

0 comments on commit 22c4041

Please sign in to comment.