Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: isaacs/minimatch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.4.5
Choose a base ref
...
head repository: isaacs/minimatch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.4.6
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 9, 2023

  1. Remove third occurence of process.platform

    PR-URL: #207
    Credit: @UnchartedBull
    Close: #207
    Reviewed-by: @isaacs
    UnchartedBull authored and isaacs committed Apr 9, 2023
    Copy the full SHA
    3a9d0f8 View commit details
  2. 7.4.6

    isaacs committed Apr 9, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7fb6a36 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 package-lock.json
  2. +1 −1 package.json
  3. +1 −1 src/index.ts
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "minimatch",
"description": "a glob matcher in javascript",
"version": "7.4.5",
"version": "7.4.6",
"publishConfig": {
"tag": "legacy-v7"
},
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -340,7 +340,7 @@ export class Minimatch {
nocase: boolean

isWindows: boolean
platform: typeof process.platform
platform: Platform
windowsNoMagicRoot: boolean

regexp: false | null | MMRegExp