@dargmuesli/nuxt-vio 21.0.1 → 21.0.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/.config/lint.js +1 -1
- package/node/server/node.mjs +4 -1
- package/node/server/static.mjs +5 -2
- package/package.json +15 -15
package/.config/lint.js
CHANGED
|
@@ -9,7 +9,7 @@ import { createJiti } from 'jiti'
|
|
|
9
9
|
|
|
10
10
|
const jiti = createJiti(import.meta.url)
|
|
11
11
|
const constants = await jiti.import('../shared/utils/constants.ts')
|
|
12
|
-
// @ts-
|
|
12
|
+
// @ts-expect-error jiti import is untyped
|
|
13
13
|
const POLYFILLS = constants.POLYFILLS
|
|
14
14
|
|
|
15
15
|
const vueI18nConfiguration = vueI18n.configs.recommended
|
package/node/server/node.mjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import fs from 'node:fs'
|
|
2
2
|
import path from 'node:path'
|
|
3
|
+
import { fileURLToPath } from 'node:url'
|
|
3
4
|
|
|
4
|
-
const
|
|
5
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
6
|
+
const __dirname = path.dirname(__filename)
|
|
7
|
+
const root = path.resolve(__dirname, '../..')
|
|
5
8
|
|
|
6
9
|
const certSuffix = process.env.CI ? '-ci' : '-dev'
|
|
7
10
|
const certPath = path.join(root, `.config/certificates/ssl${certSuffix}.crt`)
|
package/node/server/static.mjs
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { spawn } from 'node:child_process'
|
|
2
2
|
import fs from 'node:fs'
|
|
3
3
|
import path from 'node:path'
|
|
4
|
+
import { fileURLToPath } from 'node:url'
|
|
4
5
|
|
|
5
|
-
const
|
|
6
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
7
|
+
const __dirname = path.dirname(__filename)
|
|
8
|
+
const root = path.resolve(__dirname, '../..')
|
|
6
9
|
|
|
7
10
|
const certSuffix = process.env.CI ? '-ci' : '-dev'
|
|
8
11
|
const certPath = path.join(root, `.config/certificates/ssl${certSuffix}.crt`)
|
|
@@ -11,7 +14,7 @@ const keyPath = path.join(root, `.config/certificates/ssl${certSuffix}.key`)
|
|
|
11
14
|
const serveProcess = spawn(
|
|
12
15
|
'serve',
|
|
13
16
|
[
|
|
14
|
-
'playground/.output/public',
|
|
17
|
+
path.join(root, 'playground/.output/public'),
|
|
15
18
|
...(fs.existsSync(certPath) && fs.existsSync(keyPath)
|
|
16
19
|
? ['--ssl-cert', certPath, '--ssl-key', keyPath]
|
|
17
20
|
: []),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"@dargmuesli/nuxt-cookie-control": "9.1.
|
|
4
|
-
"@eslint/compat": "2.0.
|
|
3
|
+
"@dargmuesli/nuxt-cookie-control": "9.1.20",
|
|
4
|
+
"@eslint/compat": "2.0.4",
|
|
5
5
|
"@heroicons/vue": "2.2.0",
|
|
6
6
|
"@http-util/status-i18n": "0.9.0",
|
|
7
7
|
"@intlify/eslint-plugin-vue-i18n": "4.3.0",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@nuxtjs/color-mode": "4.0.0",
|
|
13
13
|
"@nuxtjs/html-validator": "2.1.0",
|
|
14
14
|
"@nuxtjs/i18n": "10.2.4",
|
|
15
|
-
"@nuxtjs/seo": "5.1.
|
|
15
|
+
"@nuxtjs/seo": "5.1.2",
|
|
16
16
|
"@nuxtjs/turnstile": "1.1.2",
|
|
17
17
|
"@pinia/nuxt": "0.11.3",
|
|
18
18
|
"@tailwindcss/forms": "0.5.11",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"@tailwindcss/vite": "4.2.2",
|
|
21
21
|
"@takumi-rs/core": "0.73.1",
|
|
22
22
|
"@types/lodash-es": "4.17.12",
|
|
23
|
-
"@types/nodemailer": "
|
|
23
|
+
"@types/nodemailer": "8.0.0",
|
|
24
24
|
"@urql/core": "6.0.1",
|
|
25
|
-
"@urql/vue": "2.
|
|
25
|
+
"@urql/vue": "2.1.0",
|
|
26
26
|
"@vuelidate/core": "2.0.3",
|
|
27
27
|
"@vuelidate/validators": "2.0.4",
|
|
28
28
|
"@vueuse/core": "14.2.1",
|
|
29
29
|
"class-variance-authority": "0.7.1",
|
|
30
30
|
"clsx": "2.1.1",
|
|
31
|
-
"eslint": "10.
|
|
31
|
+
"eslint": "10.2.0",
|
|
32
32
|
"eslint-config-prettier": "10.1.8",
|
|
33
33
|
"eslint-plugin-compat": "7.0.1",
|
|
34
34
|
"eslint-plugin-prettier": "5.5.5",
|
|
@@ -36,25 +36,25 @@
|
|
|
36
36
|
"globals": "17.4.0",
|
|
37
37
|
"jiti": "2.6.1",
|
|
38
38
|
"jose": "6.2.2",
|
|
39
|
-
"nodemailer": "8.0.
|
|
39
|
+
"nodemailer": "8.0.5",
|
|
40
40
|
"nuxt-gtag": "4.1.0",
|
|
41
41
|
"nuxt-security": "2.5.1",
|
|
42
|
-
"reka-ui": "2.9.
|
|
43
|
-
"shadcn-nuxt": "2.
|
|
42
|
+
"reka-ui": "2.9.5",
|
|
43
|
+
"shadcn-nuxt": "2.5.3",
|
|
44
44
|
"tailwind-merge": "3.5.0",
|
|
45
45
|
"tw-animate-css": "1.4.0",
|
|
46
46
|
"vue-sonner": "2.0.9",
|
|
47
47
|
"vue-tsc": "3.2.6"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "24.12.
|
|
50
|
+
"@types/node": "24.12.2",
|
|
51
51
|
"@urql/devtools": "2.0.3",
|
|
52
52
|
"@urql/exchange-graphcache": "9.0.0",
|
|
53
53
|
"@vueuse/core": "14.2.1",
|
|
54
54
|
"consola": "3.4.2",
|
|
55
|
-
"defu": "6.1.
|
|
56
|
-
"h3": "1.15.
|
|
57
|
-
"lodash-es": "4.
|
|
55
|
+
"defu": "6.1.7",
|
|
56
|
+
"h3": "1.15.11",
|
|
57
|
+
"lodash-es": "4.18.1",
|
|
58
58
|
"nuxt": "4.4.2",
|
|
59
59
|
"pinia": "3.0.4",
|
|
60
60
|
"prettier": "3.8.1",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"stylelint-config-standard": "40.0.0",
|
|
67
67
|
"stylelint-no-unsupported-browser-features": "8.1.1",
|
|
68
68
|
"tailwindcss": "4.2.2",
|
|
69
|
-
"vue": "3.5.
|
|
69
|
+
"vue": "3.5.32",
|
|
70
70
|
"vue-router": "5.0.4"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"start:static": "node node/server/static.mjs"
|
|
119
119
|
},
|
|
120
120
|
"type": "module",
|
|
121
|
-
"version": "21.0.
|
|
121
|
+
"version": "21.0.3"
|
|
122
122
|
}
|