@storm-software/tsdoc 0.5.5 → 0.6.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/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.5.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.5.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/config/core.json CHANGED
@@ -1,4 +1,11 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
3
- "extends": ["./base.json", "./api-extractor.json", "./typedoc.json"]
3
+ "extends": ["./base.json", "./api-extractor.json", "./typedoc.json"],
4
+ "tagDefinitions": [
5
+ {
6
+ "tagName": "@credits",
7
+ "syntaxKind": "block",
8
+ "allowMultiple": true
9
+ }
10
+ ]
4
11
  }
package/dist/index.cjs CHANGED
@@ -90,7 +90,14 @@ var callouts_default = {
90
90
  // src/core.json
91
91
  var core_default = {
92
92
  $schema: "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
93
- extends: ["./base.json", "./api-extractor.json", "./typedoc.json"]
93
+ extends: ["./base.json", "./api-extractor.json", "./typedoc.json"],
94
+ tagDefinitions: [
95
+ {
96
+ tagName: "@credits",
97
+ syntaxKind: "block",
98
+ allowMultiple: true
99
+ }
100
+ ]
94
101
  };
95
102
 
96
103
  // src/recommended.json
package/dist/index.d.cts CHANGED
@@ -34,6 +34,11 @@ declare const configs: {
34
34
  readonly core: {
35
35
  $schema: string;
36
36
  extends: string[];
37
+ tagDefinitions: {
38
+ tagName: string;
39
+ syntaxKind: string;
40
+ allowMultiple: boolean;
41
+ }[];
37
42
  };
38
43
  readonly callouts: {
39
44
  $schema: string;
package/dist/index.d.ts CHANGED
@@ -34,6 +34,11 @@ declare const configs: {
34
34
  readonly core: {
35
35
  $schema: string;
36
36
  extends: string[];
37
+ tagDefinitions: {
38
+ tagName: string;
39
+ syntaxKind: string;
40
+ allowMultiple: boolean;
41
+ }[];
37
42
  };
38
43
  readonly callouts: {
39
44
  $schema: string;
package/dist/index.js CHANGED
@@ -63,7 +63,14 @@ var callouts_default = {
63
63
  // src/core.json
64
64
  var core_default = {
65
65
  $schema: "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
66
- extends: ["./base.json", "./api-extractor.json", "./typedoc.json"]
66
+ extends: ["./base.json", "./api-extractor.json", "./typedoc.json"],
67
+ tagDefinitions: [
68
+ {
69
+ tagName: "@credits",
70
+ syntaxKind: "block",
71
+ allowMultiple: true
72
+ }
73
+ ]
67
74
  };
68
75
 
69
76
  // src/recommended.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsdoc",
3
- "version": "0.5.5",
3
+ "version": "0.6.0",
4
4
  "type": "module",
5
5
  "description": "This package contains shared TSDoc configurations used in Storm Software projects.",
6
6
  "repository": {
@@ -87,5 +87,5 @@
87
87
  },
88
88
  "publishConfig": { "access": "public" },
89
89
  "sideEffects": false,
90
- "gitHead": "7d6d43d5036939eba54634847fae361a5ee35057"
90
+ "gitHead": "cedf85874cce225715bdde5a4aab075d025e788d"
91
91
  }