Skip to content

Commit e5261f0

Browse files
committed
Bump dependencies; readme tweaks
1 parent 1354668 commit e5261f0

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# regex-utilities
22

3-
[![build status](https://github.com/slevithan/regex-utilities/workflows/CI/badge.svg)](https://github.com/slevithan/regex-utilities/actions)
4-
[![npm](https://img.shields.io/npm/v/regex-utilities)](https://www.npmjs.com/package/regex-utilities)
5-
[![bundle size](https://deno.bundlejs.com/badge?q=regex-utilities&treeshake=[*])](https://bundlejs.com/?q=regex-utilities&treeshake=[*])
3+
[![npm version][npm-version-src]][npm-version-href]
4+
[![bundle][bundle-src]][bundle-href]
65

76
Tiny utilities that the [regex](https://github.com/slevithan/regex) library makes available for reuse in its plugins. Useful for parsing and processing regular expression syntax in a lightweight way, when you don't need a full regex AST.
87

@@ -76,3 +75,10 @@ Runs a function for each unescaped match of a regex pattern in the given context
7675
*Arguments: `expression, contentsStartPos`*
7776

7877
Extracts the full contents of a group (subpattern) from the given expression, accounting for escaped characters, nested groups, and character classes. The group is identified by the position where its contents start (the string index just after the group's opening delimiter). Returns the rest of the string if the group is unclosed.
78+
79+
<!-- Badges -->
80+
81+
[npm-version-src]: https://img.shields.io/npm/v/regex-utilities
82+
[npm-version-href]: https://npmjs.com/package/regex-utilities
83+
[bundle-src]: https://deno.bundlejs.com/badge?q=regex-utilities&treeshake=[*]
84+
[bundle-href]: https://bundlejs.com/?q=regex-utilities&treeshake=[*]

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"url": "git+https://github.com/slevithan/regex-utilities.git"
3030
},
3131
"devDependencies": {
32-
"jasmine": "^5.2.0",
33-
"typescript": "5.5.4"
32+
"jasmine": "^5.4.0",
33+
"typescript": "^5.6.3"
3434
}
3535
}

0 commit comments

Comments
 (0)