nuxt-ignis 0.4.0-rc.2 → 0.4.0-rc.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/.data/content/contents.sqlite +0 -0
- package/.nuxt/components.d.ts +116 -116
- package/.nuxt/content/components.ts +4 -4
- package/.nuxt/dev/index.mjs +18 -1
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/imports.d.ts +3 -3
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-imports.mjs +1 -1
- package/.nuxt/nitro.json +3 -3
- package/.nuxt/nuxt.d.ts +8 -8
- package/.nuxt/tsconfig.json +5 -5
- package/.nuxt/tsconfig.server.json +2 -2
- package/.nuxt/types/imports.d.ts +6 -6
- package/.nuxt/types/nitro-imports.d.ts +4 -4
- package/package.json +1 -1
- package/utils/pslo-utils.ts +2 -1
package/.nuxt/imports.d.ts
CHANGED
|
@@ -96,9 +96,9 @@ export { useBotDetection } from '../node_modules/.pnpm/@nuxtjs+robots@5.4.0_magi
|
|
|
96
96
|
export { defineOgImage, defineOgImageComponent, defineOgImageScreenshot } from '../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock';
|
|
97
97
|
export { useBreadcrumbItems } from '../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/dist/runtime/app/composables/useBreadcrumbItems';
|
|
98
98
|
export { queryCollection, queryCollectionSearchSections, queryCollectionNavigation, queryCollectionItemSurroundings } from '../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app';
|
|
99
|
-
export { flatUnwrap as unwrapSlot } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
100
|
-
export { parseMarkdown } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
101
|
-
export { stringifyMarkdown } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
99
|
+
export { flatUnwrap as unwrapSlot } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/utils/node';
|
|
100
|
+
export { parseMarkdown } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser';
|
|
101
|
+
export { stringifyMarkdown } from '../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify';
|
|
102
102
|
export { useUserSession } from '../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/app/composables/session';
|
|
103
103
|
export { useMagicAccordion } from '@maas/vue-equipment/plugins/MagicAccordion';
|
|
104
104
|
export { useMagicCommand } from '@maas/vue-equipment/plugins/MagicCommand';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"id":"dev","timestamp":
|
|
1
|
+
{"id":"dev","timestamp":1753124193351}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"id":"dev","timestamp":
|
|
1
|
+
{"id":"dev","timestamp":1753124193351,"matcher":{"static":{"/__nuxt_content/content/sql_dump.txt":{"prerender":true}},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
package/.nuxt/mdc-imports.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _RemarkEmoji from 'remark-emoji'
|
|
2
|
-
import _Highlight from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
2
|
+
import _Highlight from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/highlighter/rehype-nuxt.js'
|
|
3
3
|
|
|
4
4
|
export const remarkPlugins = {
|
|
5
5
|
'remark-emoji': { instance: _RemarkEmoji },
|
package/.nuxt/nitro.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"date": "2025-07-
|
|
2
|
+
"date": "2025-07-21T18:57:35.912Z",
|
|
3
3
|
"preset": "nitro-dev",
|
|
4
4
|
"framework": {
|
|
5
5
|
"name": "nuxt",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"nitro": "2.12.3"
|
|
10
10
|
},
|
|
11
11
|
"dev": {
|
|
12
|
-
"pid":
|
|
12
|
+
"pid": 34592,
|
|
13
13
|
"workerAddress": {
|
|
14
|
-
"socketPath": "\\\\.\\pipe\\nitro-worker-
|
|
14
|
+
"socketPath": "\\\\.\\pipe\\nitro-worker-34592-3-2-3733.sock"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
}
|
package/.nuxt/nuxt.d.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
/// <reference types="@vueuse/nuxt" />
|
|
2
2
|
/// <reference types="magic-regexp" />
|
|
3
3
|
/// <reference types="@nuxt/eslint" />
|
|
4
|
-
/// <reference types="@nuxt/fonts" />
|
|
5
|
-
/// <reference types="@nuxt/scripts" />
|
|
6
4
|
/// <reference types="@nuxt/image" />
|
|
7
5
|
/// <reference types="@pinia/nuxt" />
|
|
8
|
-
/// <reference types="@nuxt/ui" />
|
|
9
6
|
/// <reference types="nuxt-neon" />
|
|
7
|
+
/// <reference types="@nuxt/ui" />
|
|
8
|
+
/// <reference types="nuxt-security" />
|
|
9
|
+
/// <reference types="@nuxt/scripts" />
|
|
10
10
|
/// <reference types="@nuxtjs/i18n" />
|
|
11
|
-
/// <reference types="@vueform/nuxt" />
|
|
12
11
|
/// <reference types="@nuxtjs/seo" />
|
|
13
12
|
/// <reference types="@nuxt/content" />
|
|
14
|
-
/// <reference types="nuxt
|
|
13
|
+
/// <reference types="@nuxt/fonts" />
|
|
14
|
+
/// <reference types="@vueform/nuxt" />
|
|
15
|
+
/// <reference types="nuxt-auth-utils" />
|
|
15
16
|
/// <reference types="nuxt-charts" />
|
|
16
17
|
/// <reference types="@nuxt/eslint" />
|
|
17
18
|
/// <reference types="@nuxt/devtools" />
|
|
18
|
-
/// <reference types="nuxt-auth-utils" />
|
|
19
|
-
/// <reference types="@maas/vue-equipment" />
|
|
20
|
-
/// <reference types="@nuxt/test-utils" />
|
|
21
19
|
/// <reference types="@nuxt/telemetry" />
|
|
20
|
+
/// <reference types="@nuxt/test-utils" />
|
|
21
|
+
/// <reference types="@maas/vue-equipment" />
|
|
22
22
|
/// <reference path="types/builder-env.d.ts" />
|
|
23
23
|
/// <reference types="nuxt" />
|
|
24
24
|
/// <reference path="types/app-defaults.d.ts" />
|
package/.nuxt/tsconfig.json
CHANGED
|
@@ -305,8 +305,8 @@
|
|
|
305
305
|
"../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/dist/runtime",
|
|
306
306
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/runtime",
|
|
307
307
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/dist/runtime",
|
|
308
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
309
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
308
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/runtime",
|
|
309
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime",
|
|
310
310
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/runtime",
|
|
311
311
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime",
|
|
312
312
|
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/runtime",
|
|
@@ -379,7 +379,7 @@
|
|
|
379
379
|
"../node_modules/.pnpm/nuxt-link-checker@4.3.1_@ne_956ea8d4254d875b15ac960c0d5c83aa/node_modules/nuxt-link-checker/node_modules",
|
|
380
380
|
"../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/node_modules",
|
|
381
381
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/node_modules",
|
|
382
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
382
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/node_modules",
|
|
383
383
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/node_modules",
|
|
384
384
|
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/node_modules",
|
|
385
385
|
"../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/node_modules",
|
|
@@ -430,8 +430,8 @@
|
|
|
430
430
|
"../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/dist/runtime/server",
|
|
431
431
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/runtime/server",
|
|
432
432
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/dist/runtime/server",
|
|
433
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
434
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
433
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/runtime/server",
|
|
434
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/server",
|
|
435
435
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/runtime/server",
|
|
436
436
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/server",
|
|
437
437
|
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/runtime/server",
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
"../node_modules/.pnpm/nuxt-link-checker@4.3.1_@ne_956ea8d4254d875b15ac960c0d5c83aa/node_modules/nuxt-link-checker/runtime/server",
|
|
277
277
|
"../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/runtime/server",
|
|
278
278
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/runtime/server",
|
|
279
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
279
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/runtime/server",
|
|
280
280
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/runtime/server",
|
|
281
281
|
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/runtime/server",
|
|
282
282
|
"../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicAccordion/nuxt.mjs/runtime/server",
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
"../node_modules/.pnpm/nuxt-link-checker@4.3.1_@ne_956ea8d4254d875b15ac960c0d5c83aa/node_modules/nuxt-link-checker/node_modules",
|
|
331
331
|
"../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/node_modules",
|
|
332
332
|
"../node_modules/.pnpm/@nuxtjs+seo@3.1.0_@netlify+_28188a4227b68cee30443d2555829353/node_modules/@nuxtjs/seo/node_modules",
|
|
333
|
-
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
333
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/node_modules",
|
|
334
334
|
"../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/node_modules",
|
|
335
335
|
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/node_modules",
|
|
336
336
|
"../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/node_modules",
|
package/.nuxt/types/imports.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ declare global {
|
|
|
145
145
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
146
146
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
147
147
|
const oneOrMore: typeof import('magic-regexp')['oneOrMore']
|
|
148
|
-
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
148
|
+
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']
|
|
149
149
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
150
150
|
const portalTargetInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['portalTargetInjectionKey']
|
|
151
151
|
const prefetchComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']
|
|
@@ -191,7 +191,7 @@ declare global {
|
|
|
191
191
|
const showError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['showError']
|
|
192
192
|
const sticky: typeof import('magic-regexp')['sticky']
|
|
193
193
|
const storeToRefs: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']
|
|
194
|
-
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
194
|
+
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']
|
|
195
195
|
const syncRef: typeof import('@vueuse/core')['syncRef']
|
|
196
196
|
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
|
197
197
|
const tab: typeof import('magic-regexp')['tab']
|
|
@@ -214,7 +214,7 @@ declare global {
|
|
|
214
214
|
const unref: typeof import('vue')['unref']
|
|
215
215
|
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
216
216
|
const until: typeof import('@vueuse/core')['until']
|
|
217
|
-
const unwrapSlot: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
217
|
+
const unwrapSlot: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/utils/node')['flatUnwrap']
|
|
218
218
|
const updateAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['updateAppConfig']
|
|
219
219
|
const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']
|
|
220
220
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
@@ -675,7 +675,7 @@ declare module 'vue' {
|
|
|
675
675
|
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
676
676
|
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
677
677
|
readonly oneOrMore: UnwrapRef<typeof import('magic-regexp')['oneOrMore']>
|
|
678
|
-
readonly parseMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
678
|
+
readonly parseMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']>
|
|
679
679
|
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
|
|
680
680
|
readonly portalTargetInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['portalTargetInjectionKey']>
|
|
681
681
|
readonly prefetchComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']>
|
|
@@ -721,7 +721,7 @@ declare module 'vue' {
|
|
|
721
721
|
readonly showError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['showError']>
|
|
722
722
|
readonly sticky: UnwrapRef<typeof import('magic-regexp')['sticky']>
|
|
723
723
|
readonly storeToRefs: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']>
|
|
724
|
-
readonly stringifyMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
724
|
+
readonly stringifyMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']>
|
|
725
725
|
readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
|
|
726
726
|
readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
|
|
727
727
|
readonly tab: UnwrapRef<typeof import('magic-regexp')['tab']>
|
|
@@ -744,7 +744,7 @@ declare module 'vue' {
|
|
|
744
744
|
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
745
745
|
readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
|
|
746
746
|
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
747
|
-
readonly unwrapSlot: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
747
|
+
readonly unwrapSlot: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/utils/node')['flatUnwrap']>
|
|
748
748
|
readonly updateAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['updateAppConfig']>
|
|
749
749
|
readonly updateSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']>
|
|
750
750
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
@@ -144,7 +144,7 @@ declare global {
|
|
|
144
144
|
const lazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['lazyEventHandler']
|
|
145
145
|
const nitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.12.3_@netlify+blobs@9.1.2_better-sqlite3@12.2.0/node_modules/nitropack/dist/runtime/internal/plugin')['nitroPlugin']
|
|
146
146
|
const parseCookies: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['parseCookies']
|
|
147
|
-
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
147
|
+
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']
|
|
148
148
|
const promisifyNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['promisifyNodeListener']
|
|
149
149
|
const proxyRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['proxyRequest']
|
|
150
150
|
const queryCollection: typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/nitro')['queryCollection']
|
|
@@ -182,7 +182,7 @@ declare global {
|
|
|
182
182
|
const setResponseStatus: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setResponseStatus']
|
|
183
183
|
const setUserSession: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/utils/session')['setUserSession']
|
|
184
184
|
const splitCookiesString: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['splitCookiesString']
|
|
185
|
-
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
185
|
+
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']
|
|
186
186
|
const toEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toEventHandler']
|
|
187
187
|
const toNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toNodeListener']
|
|
188
188
|
const toPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toPlainHandler']
|
|
@@ -357,8 +357,8 @@ export { isNeonSuccess, isNeonError, formatNeonError } from 'C:/Git/nuxt-ignis/c
|
|
|
357
357
|
export { defineSitemapEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.4.3_h3@1._1c8f23ecefdba6c15e94d43a751953f7/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/defineSitemapEventHandler';
|
|
358
358
|
export { asSitemapUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.4.3_h3@1._1c8f23ecefdba6c15e94d43a751953f7/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/asSitemapUrl';
|
|
359
359
|
export { queryCollection, queryCollectionSearchSections, queryCollectionNavigation, queryCollectionItemSurroundings } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/nitro';
|
|
360
|
-
export { parseMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
361
|
-
export { stringifyMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.
|
|
360
|
+
export { parseMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser';
|
|
361
|
+
export { stringifyMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.2_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify';
|
|
362
362
|
export { defineI18nLocale, defineI18nConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared';
|
|
363
363
|
export { getSiteIndexable } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/server/composables/getSiteIndexable';
|
|
364
364
|
export { updateSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/server/composables/updateSiteConfig';
|
package/package.json
CHANGED
package/utils/pslo-utils.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { preventSingleLetterOrphans } from 'elrh-pslo'
|
|
2
|
+
import { log } from './consola'
|
|
2
3
|
|
|
3
4
|
// this util function proxies "preventSingleLetterOrphans" function
|
|
4
5
|
// it only applies the text transformation if relevant options is set up
|
|
5
6
|
export function pslo(text: string) {
|
|
6
7
|
if (process.env.NUXT_PUBLIC_IGNIS_PSLO_ENABLED === 'true') {
|
|
7
|
-
log.
|
|
8
|
+
log.debug(`treating text input with elrh-pslo`)
|
|
8
9
|
return preventSingleLetterOrphans(text)
|
|
9
10
|
} else {
|
|
10
11
|
return text
|