Skip to content

Commit 34ab5f4

Browse files
Update dependency minimatch to v9 (#119)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Francisco Giordano <[email protected]>
1 parent 1d4f988 commit 34ab5f4

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,12 @@
4141
"compare-versions": "^5.0.0",
4242
"ethereum-cryptography": "^2.0.0",
4343
"lodash": "^4.17.20",
44-
"minimatch": "^6.0.0",
44+
"minimatch": "^9.0.0",
4545
"minimist": "^1.2.5",
4646
"solidity-ast": "^0.4.51"
4747
},
4848
"devDependencies": {
4949
"@types/lodash": "^4.14.165",
50-
"@types/minimatch": "^3.0.3",
5150
"@types/minimist": "^1.2.1",
5251
"@types/mocha": "^7.0.2",
5352
"@types/node": "^10.17.44",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import path from 'path';
22
import fs from 'fs';
33
import { mapValues } from 'lodash';
4-
import minimatch from 'minimatch';
4+
import { minimatch } from 'minimatch';
55

66
import { matcher } from './utils/matcher';
77
import { renamePath, isRenamed } from './rename';

src/transformations/add-required-public-initializers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SourceUnit } from 'solidity-ast';
22
import { findAll } from 'solidity-ast/utils';
3-
import minimatch from 'minimatch';
3+
import { minimatch } from 'minimatch';
44

55
import { newFunctionPosition } from './utils/new-function-position';
66
import { buildPublicInitialize } from './utils/build-pulic-initialize';

0 commit comments

Comments
 (0)