Socket
Socket
Sign inDemoInstall

picomatch

Package Overview
Dependencies
0
Maintainers
4
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.2 to 2.2.3

7

CHANGELOG.md

@@ -35,2 +35,9 @@ # Release history

## 2.2.3 (2021-04-10)
### Fixed
* Do not skip pattern seperator for square brackets ([fb08a30](https://github.com/micromatch/picomatch/commit/fb08a30)).
* Set negatedExtGlob also if it does not span the whole pattern ([032e3f5](https://github.com/micromatch/picomatch/commit/032e3f5)).
## 2.2.2 (2020-03-21)

@@ -37,0 +44,0 @@

2

lib/parse.js

@@ -250,3 +250,3 @@ 'use strict';

if (token.prev.type === 'bos' && eos()) {
if (token.prev.type === 'bos') {
state.negatedExtglob = true;

@@ -253,0 +253,0 @@ }

@@ -234,9 +234,11 @@ 'use strict';

finished = true;
if (scanToEnd === true) {
continue;
}
break;
}
}
if (scanToEnd === true) {
continue;
}
break;
}

@@ -243,0 +245,0 @@

{
"name": "picomatch",
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
"version": "2.2.2",
"version": "2.2.3",
"homepage": "https://github.com/micromatch/picomatch",

@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",

@@ -565,3 +565,3 @@ <h1 align="center">Picomatch</h1>

To match any of the following characters as literals: `$^*+?()[]
To match any of the following characters as literals: `$^*+?()[]`

@@ -568,0 +568,0 @@ Examples:

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc