string-character-is-astral-surrogate 3.0.0 → 3.0.2
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,17 +3,17 @@
|
|
|
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
|
-
|
|
6
|
+
## [3.0.2](https://github.com/codsen/codsen/compare/string-character-is-astral-surrogate@3.0.1...string-character-is-astral-surrogate@3.0.2) (2022-12-06)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
**Note:** Version bump only for package string-character-is-astral-surrogate
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
## 3.0.0 (2022-12-01)
|
|
11
11
|
|
|
12
12
|
### BREAKING CHANGES
|
|
13
13
|
|
|
14
14
|
- Minimum supported Node version is v14.18; we're dropping v12 support
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## 2.1.0 (2022-08-12)
|
|
17
17
|
|
|
18
18
|
### Features
|
|
19
19
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name string-character-is-astral-surrogate
|
|
3
3
|
* @fileoverview Tells, is given character a part of astral character, specifically, a high and low surrogate
|
|
4
|
-
* @version 3.0.
|
|
4
|
+
* @version 3.0.2
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/string-character-is-astral-surrogate/}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name string-character-is-astral-surrogate
|
|
3
3
|
* @fileoverview Tells, is given character a part of astral character, specifically, a high and low surrogate
|
|
4
|
-
* @version 3.0.
|
|
4
|
+
* @version 3.0.2
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/string-character-is-astral-surrogate/}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "string-character-is-astral-surrogate",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Tells, is given character a part of astral character, specifically, a high and low surrogate",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"astral",
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
},
|
|
39
39
|
"types": "types/index.d.ts",
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "node '../../ops/scripts/esbuild.js' &&
|
|
41
|
+
"build": "node '../../ops/scripts/esbuild.js' && npm run dts",
|
|
42
42
|
"cjs-off": "exit 0",
|
|
43
43
|
"cjs-on": "exit 0",
|
|
44
|
-
"dev": "DEV=true node '../../ops/scripts/esbuild.js' &&
|
|
45
|
-
"devtest": "c8
|
|
46
|
-
"dts": "rollup -c &&
|
|
44
|
+
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && npm run dts",
|
|
45
|
+
"devtest": "c8 npm run unit && npm run examples && npm run lint",
|
|
46
|
+
"dts": "rollup -c && npm run prettier -- 'types/index.d.ts' --write --loglevel 'silent'",
|
|
47
47
|
"examples": "node '../../ops/scripts/run-examples.js'",
|
|
48
|
-
"lect": "node '../../ops/lect/lect.js' &&
|
|
49
|
-
"letspublish": "
|
|
48
|
+
"lect": "node '../../ops/lect/lect.js' && npm run prettier -- 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
|
|
49
|
+
"letspublish": "npm publish || :",
|
|
50
50
|
"lint": "eslint . --ext .js --ext .ts --fix",
|
|
51
51
|
"perf": "node perf/check.js",
|
|
52
|
-
"
|
|
52
|
+
"prep": "echo 'ready'",
|
|
53
53
|
"prettier": "prettier",
|
|
54
|
-
"prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
|
|
55
|
-
"pretest": "
|
|
56
|
-
"test": "
|
|
54
|
+
"prettier:format": "npm run prettier -- --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern --loglevel 'silent'",
|
|
55
|
+
"pretest": "npm run lect && npm run build",
|
|
56
|
+
"test": "npm run devtest",
|
|
57
57
|
"unit": "uvu test"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|