@forsakringskassan/docs-generator 2.20.0 → 2.21.1
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/dist/index.d.ts +5 -2
- package/dist/index.js +71 -32
- package/dist/index.js.map +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +1 -1
- package/templates/base.template.html +4 -0
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -25,8 +25,10 @@
|
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore -->
|
|
27
27
|
{%- for asset in injectHead | take("type", "js") %}
|
|
28
|
+
<!-- prettier-ignore -->
|
|
28
29
|
<script
|
|
29
30
|
src="{{ asset.publicPath | relative(doc) }}"
|
|
31
|
+
{% if asset.format === "esm" %}type="module"{% endif %}
|
|
30
32
|
crossorigin
|
|
31
33
|
integrity="{{ asset.integrity }}"
|
|
32
34
|
{{
|
|
@@ -120,8 +122,10 @@
|
|
|
120
122
|
|
|
121
123
|
<!-- prettier-ignore -->
|
|
122
124
|
{%- for asset in injectBody | take("type", "js") %}
|
|
125
|
+
<!-- prettier-ignore -->
|
|
123
126
|
<script
|
|
124
127
|
src="{{ asset.publicPath | relative(doc) }}"
|
|
128
|
+
{% if asset.format === "esm" %}type="module"{% endif %}
|
|
125
129
|
crossorigin
|
|
126
130
|
integrity="{{ asset.integrity }}"
|
|
127
131
|
{{
|