Skip to content

Commit

Permalink
Update dependency minimatch to v9 (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Francisco Giordano <[email protected]>
  • Loading branch information
renovate[bot] and frangio authored Sep 1, 2023
1 parent 1d4f988 commit 34ab5f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
17 changes: 5 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,12 @@
"compare-versions": "^5.0.0",
"ethereum-cryptography": "^2.0.0",
"lodash": "^4.17.20",
"minimatch": "^6.0.0",
"minimatch": "^9.0.0",
"minimist": "^1.2.5",
"solidity-ast": "^0.4.51"
},
"devDependencies": {
"@types/lodash": "^4.14.165",
"@types/minimatch": "^3.0.3",
"@types/minimist": "^1.2.1",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.44",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'path';
import fs from 'fs';
import { mapValues } from 'lodash';
import minimatch from 'minimatch';
import { minimatch } from 'minimatch';

import { matcher } from './utils/matcher';
import { renamePath, isRenamed } from './rename';
Expand Down
2 changes: 1 addition & 1 deletion src/transformations/add-required-public-initializers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SourceUnit } from 'solidity-ast';
import { findAll } from 'solidity-ast/utils';
import minimatch from 'minimatch';
import { minimatch } from 'minimatch';

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

0 comments on commit 34ab5f4

Please sign in to comment.