@forsakringskassan/docs-generator 2.20.0 → 2.21.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/dist/index.d.ts +3 -2
- package/dist/index.js +57 -28
- package/dist/index.js.map +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +1 -1
- package/templates/base.template.html +2 -0
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
{%- for asset in injectHead | take("type", "js") %}
|
|
28
28
|
<script
|
|
29
29
|
src="{{ asset.publicPath | relative(doc) }}"
|
|
30
|
+
type="module"
|
|
30
31
|
crossorigin
|
|
31
32
|
integrity="{{ asset.integrity }}"
|
|
32
33
|
{{
|
|
@@ -122,6 +123,7 @@
|
|
|
122
123
|
{%- for asset in injectBody | take("type", "js") %}
|
|
123
124
|
<script
|
|
124
125
|
src="{{ asset.publicPath | relative(doc) }}"
|
|
126
|
+
type="module"
|
|
125
127
|
crossorigin
|
|
126
128
|
integrity="{{ asset.integrity }}"
|
|
127
129
|
{{
|