unicode-match-property-value-ecmascript
Advanced tools
Comparing version 1.2.0 to 2.0.0
@@ -111,2 +111,3 @@ module.exports = new Map([ | ||
['Qaac', 'Coptic'], | ||
['Cpmn', 'Cypro_Minoan'], | ||
['Cprt', 'Cypriot'], | ||
@@ -191,2 +192,3 @@ ['Cyrl', 'Cyrillic'], | ||
['Osma', 'Osmanya'], | ||
['Ougr', 'Old_Uyghur'], | ||
['Palm', 'Palmyrene'], | ||
@@ -234,4 +236,7 @@ ['Pauc', 'Pau_Cin_Hau'], | ||
['Tirh', 'Tirhuta'], | ||
['Tnsa', 'Tangsa'], | ||
['Toto', 'Toto'], | ||
['Ugar', 'Ugaritic'], | ||
['Vaii', 'Vai'], | ||
['Vith', 'Vithkuqi'], | ||
['Wara', 'Warang_Citi'], | ||
@@ -271,2 +276,3 @@ ['Wcho', 'Wancho'], | ||
['Coptic', 'Coptic'], | ||
['Cypro_Minoan', 'Cypro_Minoan'], | ||
['Cypriot', 'Cypriot'], | ||
@@ -348,2 +354,3 @@ ['Cyrillic', 'Cyrillic'], | ||
['Osmanya', 'Osmanya'], | ||
['Old_Uyghur', 'Old_Uyghur'], | ||
['Palmyrene', 'Palmyrene'], | ||
@@ -390,4 +397,6 @@ ['Pau_Cin_Hau', 'Pau_Cin_Hau'], | ||
['Tirhuta', 'Tirhuta'], | ||
['Tangsa', 'Tangsa'], | ||
['Ugaritic', 'Ugaritic'], | ||
['Vai', 'Vai'], | ||
['Vithkuqi', 'Vithkuqi'], | ||
['Warang_Citi', 'Warang_Citi'], | ||
@@ -431,2 +440,3 @@ ['Wancho', 'Wancho'], | ||
['Qaac', 'Coptic'], | ||
['Cpmn', 'Cypro_Minoan'], | ||
['Cprt', 'Cypriot'], | ||
@@ -511,2 +521,3 @@ ['Cyrl', 'Cyrillic'], | ||
['Osma', 'Osmanya'], | ||
['Ougr', 'Old_Uyghur'], | ||
['Palm', 'Palmyrene'], | ||
@@ -554,4 +565,7 @@ ['Pauc', 'Pau_Cin_Hau'], | ||
['Tirh', 'Tirhuta'], | ||
['Tnsa', 'Tangsa'], | ||
['Toto', 'Toto'], | ||
['Ugar', 'Ugaritic'], | ||
['Vaii', 'Vai'], | ||
['Vith', 'Vithkuqi'], | ||
['Wara', 'Warang_Citi'], | ||
@@ -591,2 +605,3 @@ ['Wcho', 'Wancho'], | ||
['Coptic', 'Coptic'], | ||
['Cypro_Minoan', 'Cypro_Minoan'], | ||
['Cypriot', 'Cypriot'], | ||
@@ -668,2 +683,3 @@ ['Cyrillic', 'Cyrillic'], | ||
['Osmanya', 'Osmanya'], | ||
['Old_Uyghur', 'Old_Uyghur'], | ||
['Palmyrene', 'Palmyrene'], | ||
@@ -710,4 +726,6 @@ ['Pau_Cin_Hau', 'Pau_Cin_Hau'], | ||
['Tirhuta', 'Tirhuta'], | ||
['Tangsa', 'Tangsa'], | ||
['Ugaritic', 'Ugaritic'], | ||
['Vai', 'Vai'], | ||
['Vithkuqi', 'Vithkuqi'], | ||
['Warang_Citi', 'Warang_Citi'], | ||
@@ -714,0 +732,0 @@ ['Wancho', 'Wancho'], |
{ | ||
"name": "unicode-match-property-value-ecmascript", | ||
"version": "1.2.0", | ||
"version": "2.0.0", | ||
"description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.", | ||
@@ -32,4 +32,4 @@ "homepage": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript", | ||
"ava": "*", | ||
"jsesc": "^2.5.2", | ||
"unicode-property-value-aliases-ecmascript": "^1.1.0" | ||
"jsesc": "^3.0.2", | ||
"unicode-property-value-aliases-ecmascript": "^2.0.0" | ||
}, | ||
@@ -36,0 +36,0 @@ "scripts": { |
@@ -1,2 +0,2 @@ | ||
# unicode-match-property-value-ecmascript [![Build status](https://travis-ci.org/mathiasbynens/unicode-match-property-value-ecmascript.svg?branch=master)](https://travis-ci.org/mathiasbynens/unicode-match-property-value-ecmascript) | ||
# unicode-match-property-value-ecmascript [![Build status](https://travis-ci.org/mathiasbynens/unicode-match-property-value-ecmascript.svg?branch=main)](https://travis-ci.org/mathiasbynens/unicode-match-property-value-ecmascript) [![unicode-match-property-value-ecmascript on npm](https://img.shields.io/npm/v/unicode-match-property-value-ecmascript)](https://www.npmjs.com/package/unicode-match-property-value-ecmascript) | ||
@@ -42,2 +42,24 @@ _unicode-match-property-value-ecmascript_ matches a given Unicode property value or [property value alias](https://github.com/mathiasbynens/unicode-property-value-aliases) to its canonical property value without applying [loose matching](https://github.com/mathiasbynens/unicode-loose-match), per the algorithm used for [RegExp Unicode property escapes in ECMAScript](https://github.com/tc39/proposal-regexp-unicode-property-escapes). Consider it a strict alternative to loose matching. | ||
## For maintainers | ||
### How to publish a new release | ||
1. On the `main` branch, bump the version number in `package.json`: | ||
```sh | ||
npm version patch -m 'Release v%s' | ||
``` | ||
Instead of `patch`, use `minor` or `major` [as needed](https://semver.org/). | ||
Note that this produces a Git commit + tag. | ||
1. Push the release commit and tag: | ||
```sh | ||
git push && git push --tags | ||
``` | ||
Our CI then automatically publishes the new release to npm. | ||
## Author | ||
@@ -44,0 +66,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25581
746
73
1