ts-japi 1.12.2 → 1.12.3
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/.node-version +1 -1
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/Makefile +1 -3
- package/README.md +305 -209
- package/lib/utils/serializer.utils.d.ts.map +1 -1
- package/lib/utils/serializer.utils.js +8 -0
- package/lib/utils/serializer.utils.js.map +1 -1
- package/package.json +2 -8
- package/api-extractor.json +0 -14
- package/tools/generate_docs.ts +0 -31
- package/tools/internal/custom_markdown_action.ts +0 -32
- package/tools/internal/custom_markdown_documenter.ts +0 -1441
package/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.12.3](https://github.com/mathematic-inc/ts-japi/compare/v1.12.2...v1.12.3) (2026-03-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Auto-exclude relator fields from attributes ([#114](https://github.com/mathematic-inc/ts-japi/issues/114)) ([4ce44c2](https://github.com/mathematic-inc/ts-japi/commit/4ce44c225d28c364d2509925710b39da45df781a)), closes [#77](https://github.com/mathematic-inc/ts-japi/issues/77)
|
|
9
|
+
|
|
3
10
|
## [1.12.2](https://github.com/mathematic-inc/ts-japi/compare/v1.12.1...v1.12.2) (2026-03-11)
|
|
4
11
|
|
|
5
12
|
|
package/Makefile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH:=$(PATH):$(PWD)/node_modules/.bin
|
|
2
2
|
SHELL:=env PATH=$(PATH) /bin/bash
|
|
3
3
|
|
|
4
|
-
clean: clean-
|
|
4
|
+
clean: clean-lib clean-coverage
|
|
5
5
|
|
|
6
6
|
clean-lib:
|
|
7
7
|
@echo 'Cleaning build artifacts...'
|
|
@@ -13,7 +13,5 @@ clean-coverage:
|
|
|
13
13
|
|
|
14
14
|
.PHONY: all
|
|
15
15
|
.PHONY: clean
|
|
16
|
-
.PHONY: clean-docs
|
|
17
|
-
.PHONY: clean-readme
|
|
18
16
|
.PHONY: clean-lib
|
|
19
17
|
.PHONY: clean-coverage
|