@thi.ng/checks 3.4.6 → 3.4.7
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 +7 -1
- package/README.md +1 -1
- package/is-typedarray.js +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2023-
|
|
3
|
+
- **Last updated**: 2023-11-09T10:02:12Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [3.4.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/checks@3.4.7) (2023-11-09)
|
|
13
|
+
|
|
14
|
+
#### 🩹 Bug fixes
|
|
15
|
+
|
|
16
|
+
- update isTypedArray() to return boolean ([2c0f72f](https://github.com/thi-ng/umbrella/commit/2c0f72f))
|
|
17
|
+
|
|
12
18
|
## [3.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/checks@3.4.0) (2023-08-04)
|
|
13
19
|
|
|
14
20
|
#### 🚀 Features
|
package/README.md
CHANGED
package/is-typedarray.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/checks",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.7",
|
|
4
4
|
"description": "Collection of 70+ type, feature & value checks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -32,21 +32,20 @@
|
|
|
32
32
|
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
|
|
33
33
|
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
34
34
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
35
|
-
"doc:readme": "
|
|
36
|
-
"doc:stats": "tools:module-stats",
|
|
35
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
37
36
|
"pub": "yarn npm publish --access public",
|
|
38
|
-
"test": "
|
|
37
|
+
"test": "bun test"
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
40
|
"tslib": "^2.6.2"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.38.
|
|
45
|
-
"@thi.ng/testament": "^0.
|
|
46
|
-
"@types/node": "^20.
|
|
43
|
+
"@microsoft/api-extractor": "^7.38.2",
|
|
44
|
+
"@thi.ng/testament": "^0.4.0",
|
|
45
|
+
"@types/node": "^20.9.0",
|
|
47
46
|
"rimraf": "^5.0.5",
|
|
48
47
|
"tools": "^0.0.1",
|
|
49
|
-
"typedoc": "^0.25.
|
|
48
|
+
"typedoc": "^0.25.3",
|
|
50
49
|
"typescript": "^5.2.2"
|
|
51
50
|
},
|
|
52
51
|
"keywords": [
|
|
@@ -279,5 +278,5 @@
|
|
|
279
278
|
"default": "./is-zero.js"
|
|
280
279
|
}
|
|
281
280
|
},
|
|
282
|
-
"gitHead": "
|
|
281
|
+
"gitHead": "9f4d8ad79bca1d68214fbc9bbc5fb55f5a445f7e\n"
|
|
283
282
|
}
|