Skip to content

Commit

Permalink
Fix Regex patterns in examples in README.md (#9)
Browse files Browse the repository at this point in the history
* Fix Regex patterns in examples in README.md

* Update README.md

* PUBLISH: v2.1.3

Co-authored-by: Vladimir <vladimir.mikulic2@gmail.com>
  • Loading branch information
simonpai and VladimirMikulic authored Jul 1, 2022
1 parent f4e990f commit 010f36e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ You can find example use-cases below.
"parcelIgnore": [
"jquery.min.js",
"privacy-policy.html",
"images\/*.*"
"images/.+"
]
}
```
Expand Down Expand Up @@ -84,7 +84,7 @@ You can find example use-cases below.
{
// An array of Regex patterns
"parcelIgnore": [
"{{*.*}}"
"{{.*}}"
]
}
```
Expand Down Expand Up @@ -118,11 +118,11 @@ You can find example use-cases below.
"parcelIgnore": {
"development": [
"privacy-policy.html",
"images\/*.*"
"images/.+"
],
"production": [
"jquery.min.js",
"images\/*.*"
"images/.+"
],
"test": [
"jquery.min.js"
Expand Down
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
@@ -1,6 +1,6 @@
{
"name": "parcel-resolver-ignore",
"version": "2.1.2",
"version": "2.1.3",
"description": "Parcel plugin that allows you to ignore assets/import syntax from bundling.",
"main": "lib/index.js",
"engines": {
Expand Down

0 comments on commit 010f36e

Please sign in to comment.