-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Don’t be as strict when parsing a global replace It won’t accept an empty replace string * Don’t reset the flags when not doing a global replace The global flags are still useful for the global search * Allow preset to be updated from the preset dropdown * Bump versions
- Loading branch information
1 parent
31707e7
commit 048ef31
Showing
6 changed files
with
576 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "search-regex", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "Adds search and replace functionality across posts, pages, comments, and meta-data, with full regular expression support", | ||
"main": "search-regex.php", | ||
"sideEffects": true, | ||
|
@@ -38,15 +38,15 @@ | |
}, | ||
"homepage": "https://github.com/johngodley/search-regex", | ||
"devDependencies": { | ||
"@types/jest": "^28.1.7", | ||
"@types/jest": "^28.1.8", | ||
"@types/react": "^18.0.17", | ||
"@types/react-dom": "^18.0.6", | ||
"@types/react-highlight-words": "^0.16.4", | ||
"@types/react-redux": "^7.1.24", | ||
"@wordpress/base-styles": "^4.7.0", | ||
"@wordpress/eslint-plugin": "^12.9.0", | ||
"@wordpress/prettier-config": "^1.4.0", | ||
"@wordpress/scripts": "^23.7.2", | ||
"@wordpress/eslint-plugin": "^13.0.0", | ||
"@wordpress/prettier-config": "^2.0.0", | ||
"@wordpress/scripts": "^24.0.0", | ||
"apidoc": "^0.52.0", | ||
"chai": "^4.3.6", | ||
"download": "^8.0.0", | ||
|
@@ -56,13 +56,13 @@ | |
"gulp-po2json": "^1.0.0", | ||
"gulp-zip": "^5.1.0", | ||
"he": "^1.2.0", | ||
"jest": "^28.1.3", | ||
"jest-environment-jsdom": "^28.1.3", | ||
"jest": "^29.0.0", | ||
"jest-environment-jsdom": "^29.0.0", | ||
"mocha": "^10.0.0", | ||
"node-fetch": "2", | ||
"path": "^0.12.7", | ||
"prettier": "npm:[email protected]", | ||
"release-it": "^15.3.0", | ||
"release-it": "^15.4.0", | ||
"request": "^2.88.2", | ||
"through": "^2.3.8", | ||
"through2": "^4.0.2", | ||
|
@@ -71,8 +71,8 @@ | |
"dependencies": { | ||
"@emotion/react": "^11.10.0", | ||
"@redux-devtools/extension": "^3.2.3", | ||
"@wordpress/element": "^4.13.0", | ||
"@wordpress/i18n": "^4.15.0", | ||
"@wordpress/element": "^4.14.0", | ||
"@wordpress/i18n": "^4.16.0", | ||
"classnames": "^2.3.1", | ||
"date-fns": "^2.29.2", | ||
"deep-equal": "^2.0.5", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.