ts-type-predicates 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +3 -3
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
+ ## [1.0.13](https://github.com/bluelovers/ws-ts-type/compare/ts-type-predicates@1.0.12...ts-type-predicates@1.0.13) (2026-03-28)
7
+
8
+
9
+
10
+ ### 🔖 Miscellaneous
11
+
12
+ * . ([0811be7](https://github.com/bluelovers/ws-ts-type/commit/0811be7ba29375a0ec8670e249ea6b03795f5848))
13
+
14
+
15
+
6
16
  ## [1.0.12](https://github.com/bluelovers/ws-ts-type/compare/ts-type-predicates@1.0.10...ts-type-predicates@1.0.12) (2026-03-15)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-type-predicates",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "使用斷言(assert)讓類型斷言(type predicates)運作的實用工具函式 | Use asserts to make type predicates work with better runtime validation",
5
5
  "keywords": [
6
6
  ".d.ts",
@@ -74,10 +74,10 @@
74
74
  "posttest": "yarn run build",
75
75
  "build": "yarn run build:tsdx && yarn run build:dts:tsc",
76
76
  "build:dts": "ynpx dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-banner & echo build:dts",
77
- "build:tsdx": "tsdx build --target node --name index",
78
77
  "build:dts:copy": "copy .\\src\\index.d.ts .\\dist\\index.d.ts & echo build:dts",
79
78
  "build:dts:tsc": "yarn run build:dts:tsc:emit && yarn run build:dts:copy",
80
79
  "build:dts:tsc:emit": "tsc --emitDeclarationOnly --declaration --noEmit false",
80
+ "build:tsdx": "tsdx build --target node --name index",
81
81
  "preversion": "echo preversion && yarn run test",
82
82
  "version": "echo version",
83
83
  "postversion": "echo postversion",
@@ -96,5 +96,5 @@
96
96
  "devDependencies": {
97
97
  "@types/node": "^25.5.0"
98
98
  },
99
- "gitHead": "c87f657dc8050a9b9c3ed646262f6c497a867f05"
99
+ "gitHead": "243f0114f092887ec2ab764dac8c84288018d3cd"
100
100
  }