Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump regexpu-core #12077

Merged
merged 2 commits into from Sep 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -20,7 +20,7 @@
"dependencies": {
"@babel/helper-annotate-as-pure": "workspace:^7.10.4",
"@babel/helper-regex": "workspace:^7.10.4",
"regexpu-core": "^4.7.0"
"regexpu-core": "^4.7.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
Expand Down
@@ -0,0 +1,7 @@
/[^K]/u.test(string);
/[^k]/u.test(string);
/[^\u212a]/u.test(string);

/[^K]/iu.test(string);
/[^k]/iu.test(string);
/[^\u212a]/iu.test(string);
@@ -0,0 +1,6 @@
/(?:(?!K)[\s\S])/.test(string);
/(?:(?!k)[\s\S])/.test(string);
/(?:(?!\u212A)[\s\S])/.test(string);
/(?:(?![K\u212A])[\s\S])/i.test(string);
/(?:(?![k\u212A])[\s\S])/i.test(string);
/(?:(?![K\u212A])[\s\S])/i.test(string);
10 changes: 5 additions & 5 deletions yarn.lock
Expand Up @@ -421,7 +421,7 @@ __metadata:
"@babel/helper-annotate-as-pure": "workspace:^7.10.4"
"@babel/helper-plugin-test-runner": "workspace:^7.10.4"
"@babel/helper-regex": "workspace:^7.10.4"
regexpu-core: ^4.7.0
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
Expand Down Expand Up @@ -13817,17 +13817,17 @@ fsevents@~2.1.2:
languageName: node
linkType: hard

"regexpu-core@npm:^4.7.0":
version: 4.7.0
resolution: "regexpu-core@npm:4.7.0"
"regexpu-core@npm:^4.7.0, regexpu-core@npm:^4.7.1":
version: 4.7.1
resolution: "regexpu-core@npm:4.7.1"
dependencies:
regenerate: ^1.4.0
regenerate-unicode-properties: ^8.2.0
regjsgen: ^0.5.1
regjsparser: ^0.6.4
unicode-match-property-ecmascript: ^1.0.4
unicode-match-property-value-ecmascript: ^1.2.0
checksum: 8947f4c4ac23494cb842e6a0b82f29dd76737486d78f833c1ba2436a046a134435e442a615d988c6dc6b9cdaf611aafd3627ce8d2f62a8e580f094101916cad4
checksum: a4d25a11cb95841325289ab8d0d43182b74cf7fce537e60718bc8b901adb4141714f8108c5d333da302e707068f0ea7be09fd5f06ef26a2b1c27b4f29177b8ab
languageName: node
linkType: hard

Expand Down