charcode-is-valid-xml-name-character 2.2.5 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 3.0.0 (2022-12-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- Minimum supported Node version is v14.18; we're dropping v12 support
|
|
15
|
+
|
|
6
16
|
# 2.2.0 (2022-08-12)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name charcode-is-valid-xml-name-character
|
|
3
3
|
* @fileoverview Does a given character belong to XML spec's "Production 4 OR 4a" type (is acceptable for XML element's name)
|
|
4
|
-
* @version
|
|
4
|
+
* @version 3.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/charcode-is-valid-xml-name-character/}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name charcode-is-valid-xml-name-character
|
|
3
3
|
* @fileoverview Does a given character belong to XML spec's "Production 4 OR 4a" type (is acceptable for XML element's name)
|
|
4
|
-
* @version
|
|
4
|
+
* @version 3.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/charcode-is-valid-xml-name-character/}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
/**
|
|
12
12
|
* @name ranges-is-index-within
|
|
13
13
|
* @fileoverview Checks if index is within any of the given string index ranges
|
|
14
|
-
* @version
|
|
14
|
+
* @version 4.0.0
|
|
15
15
|
* @author Roy Revelt, Codsen Ltd
|
|
16
16
|
* @license MIT
|
|
17
17
|
* {@link https://codsen.com/os/ranges-is-index-within/}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "charcode-is-valid-xml-name-character",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Does a given character belong to XML spec's \"Production 4 OR 4a\" type (is acceptable for XML element's name)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"4",
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"types": "types/index.d.ts",
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
43
|
+
"cjs-off": "exit 0",
|
|
44
|
+
"cjs-on": "exit 0",
|
|
43
45
|
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
44
46
|
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
|
|
45
47
|
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
|
|
@@ -56,7 +58,7 @@
|
|
|
56
58
|
"unit": "uvu test"
|
|
57
59
|
},
|
|
58
60
|
"engines": {
|
|
59
|
-
"node": "
|
|
61
|
+
"node": ">=14.18.0"
|
|
60
62
|
},
|
|
61
63
|
"c8": {
|
|
62
64
|
"check-coverage": true,
|
|
@@ -73,6 +75,6 @@
|
|
|
73
75
|
}
|
|
74
76
|
},
|
|
75
77
|
"dependencies": {
|
|
76
|
-
"ranges-is-index-within": "^
|
|
78
|
+
"ranges-is-index-within": "^4.0.0"
|
|
77
79
|
}
|
|
78
80
|
}
|