nuxt-ignis 0.2.2 → 0.2.4
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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/nuxt.config.ts +1 -1
- package/package.json +78 -79
- package/server/api/neonTest.ts +3 -4
- /package/{i18n.config.ts → i18n/i18n.config.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.4 (2025-03-20)
|
|
4
|
+
- build: bump `Nuxt` to `3.16.1`, `Nuxt Content` to `3.4.0` + update other deps
|
|
5
|
+
- build: fix some security issues
|
|
6
|
+
- fix: update necessary default config for `@nuxtjs/i18n`
|
|
7
|
+
|
|
8
|
+
## 0.2.3 (2025-03-08)
|
|
9
|
+
- build: bump `Nuxt` to `3.16.0` + update other deps
|
|
10
|
+
|
|
3
11
|
## 0.2.2 (2025-02-25)
|
|
4
12
|
- build: bump `nuxt-spec` and `nuxt-neon`
|
|
5
13
|
- build: return `postcss-jit-props` dependency after a [bug gets fixed](https://github.com/GoogleChromeLabs/postcss-jit-props/commit/0c98b5367935b9c048a547400ee8346cb6c07b00)
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Aside from being "forked", `nuxt-ignis` is also available as [NPM package](https
|
|
|
20
20
|
|
|
21
21
|
1) Add following dependency into your `package.json`:
|
|
22
22
|
```
|
|
23
|
-
"nuxt-ignis": "0.2.
|
|
23
|
+
"nuxt-ignis": "0.2.4"
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
2) Add following section into your `nuxt.config.ts`:
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,79 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nuxt-ignis",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Enhanced and customizable Nuxt application starter pack",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"nuxt",
|
|
7
|
-
"nuxtjs",
|
|
8
|
-
"nuxt3",
|
|
9
|
-
"starter"
|
|
10
|
-
],
|
|
11
|
-
"author": "Alois Seckar <alois.seckar@gmail.com>",
|
|
12
|
-
"homepage": "https://github.com/AloisSeckar/nuxt-ignis",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/AloisSeckar/nuxt-ignis.git"
|
|
16
|
-
},
|
|
17
|
-
"bugs": {
|
|
18
|
-
"url": "https://github.com/AloisSeckar/nuxt-ignis/issues",
|
|
19
|
-
"email": "alois.seckar@gmail.com"
|
|
20
|
-
},
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"type": "module",
|
|
23
|
-
"main": "./nuxt.config.ts",
|
|
24
|
-
"engines": {
|
|
25
|
-
"node": ">=18.0.0"
|
|
26
|
-
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"analyze": "nuxt analyze",
|
|
29
|
-
"eslint": "eslint .",
|
|
30
|
-
"build": "nuxt build",
|
|
31
|
-
"dev": "nuxt dev",
|
|
32
|
-
"generate": "nuxt generate",
|
|
33
|
-
"preview": "nuxt preview",
|
|
34
|
-
"start": "nuxt start",
|
|
35
|
-
"test": "vitest run"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@formkit/nuxt": "1.6.9",
|
|
39
|
-
"@nuxt/content": "3.
|
|
40
|
-
"@nuxt/eslint": "
|
|
41
|
-
"@nuxt/fonts": "0.
|
|
42
|
-
"@nuxt/image": "1.
|
|
43
|
-
"@nuxt/scripts": "0.
|
|
44
|
-
"@nuxt/ui": "2.21.
|
|
45
|
-
"@nuxtjs/i18n": "9.
|
|
46
|
-
"@nuxtjs/supabase": "1.
|
|
47
|
-
"@nuxtjs/tailwindcss": "6.13.
|
|
48
|
-
"@pinia/nuxt": "0.
|
|
49
|
-
"@vueuse/core": "
|
|
50
|
-
"@vueuse/nuxt": "
|
|
51
|
-
"consola": "3.4.
|
|
52
|
-
"defu": "6.1.4",
|
|
53
|
-
"elrh-pslo": "1.1.6",
|
|
54
|
-
"nuxt-neon": "0.4.0",
|
|
55
|
-
"nuxt-security": "2.
|
|
56
|
-
"nuxt-spec": "0.0.4",
|
|
57
|
-
"nuxt-time": "1.0.3",
|
|
58
|
-
"open-props": "1.7.
|
|
59
|
-
"pinia": "
|
|
60
|
-
"postcss-jit-props": "1.0.16",
|
|
61
|
-
"typescript": "latest",
|
|
62
|
-
"vue": "latest",
|
|
63
|
-
"vue-router": "latest"
|
|
64
|
-
},
|
|
65
|
-
"pnpm": {
|
|
66
|
-
"overrides": {
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"@
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "nuxt-ignis",
|
|
3
|
+
"version": "0.2.4",
|
|
4
|
+
"description": "Enhanced and customizable Nuxt application starter pack",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"nuxt",
|
|
7
|
+
"nuxtjs",
|
|
8
|
+
"nuxt3",
|
|
9
|
+
"starter"
|
|
10
|
+
],
|
|
11
|
+
"author": "Alois Seckar <alois.seckar@gmail.com>",
|
|
12
|
+
"homepage": "https://github.com/AloisSeckar/nuxt-ignis",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/AloisSeckar/nuxt-ignis.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/AloisSeckar/nuxt-ignis/issues",
|
|
19
|
+
"email": "alois.seckar@gmail.com"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "./nuxt.config.ts",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"analyze": "nuxt analyze",
|
|
29
|
+
"eslint": "eslint .",
|
|
30
|
+
"build": "nuxt build",
|
|
31
|
+
"dev": "nuxt dev",
|
|
32
|
+
"generate": "nuxt generate",
|
|
33
|
+
"preview": "nuxt preview",
|
|
34
|
+
"start": "nuxt start",
|
|
35
|
+
"test": "vitest run"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@formkit/nuxt": "1.6.9",
|
|
39
|
+
"@nuxt/content": "3.4.0",
|
|
40
|
+
"@nuxt/eslint": "1.2.0",
|
|
41
|
+
"@nuxt/fonts": "0.11.0",
|
|
42
|
+
"@nuxt/image": "1.10.0",
|
|
43
|
+
"@nuxt/scripts": "0.11.2",
|
|
44
|
+
"@nuxt/ui": "2.21.1",
|
|
45
|
+
"@nuxtjs/i18n": "9.3.3",
|
|
46
|
+
"@nuxtjs/supabase": "1.5.0",
|
|
47
|
+
"@nuxtjs/tailwindcss": "6.13.2",
|
|
48
|
+
"@pinia/nuxt": "0.10.1",
|
|
49
|
+
"@vueuse/core": "13.0.0",
|
|
50
|
+
"@vueuse/nuxt": "13.0.0",
|
|
51
|
+
"consola": "3.4.2",
|
|
52
|
+
"defu": "6.1.4",
|
|
53
|
+
"elrh-pslo": "1.1.6",
|
|
54
|
+
"nuxt-neon": "0.4.0",
|
|
55
|
+
"nuxt-security": "2.2.0",
|
|
56
|
+
"nuxt-spec": "0.0.4",
|
|
57
|
+
"nuxt-time": "1.0.3",
|
|
58
|
+
"open-props": "1.7.14",
|
|
59
|
+
"pinia": "3.0.1",
|
|
60
|
+
"postcss-jit-props": "1.0.16",
|
|
61
|
+
"typescript": "latest",
|
|
62
|
+
"vue": "latest",
|
|
63
|
+
"vue-router": "latest"
|
|
64
|
+
},
|
|
65
|
+
"pnpm": {
|
|
66
|
+
"overrides": {
|
|
67
|
+
"@nuxt/kit": "3.16.1",
|
|
68
|
+
"eslint": "9.16.0",
|
|
69
|
+
"esbuild": "^0.25.0",
|
|
70
|
+
"vue-i18n": "^10.0.6",
|
|
71
|
+
"@babel/helpers": "^7.26.10"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"nuxt": "3.16.1"
|
|
76
|
+
},
|
|
77
|
+
"packageManager": "pnpm@9.15.9"
|
|
78
|
+
}
|
package/server/api/neonTest.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
export default defineEventHandler(async () => {
|
|
2
2
|
const config = useRuntimeConfig().public.ignis
|
|
3
3
|
if (config.preset.db === 'neon' || config.neon === true) {
|
|
4
|
-
const neon = getNeonClient()
|
|
5
4
|
return await select(
|
|
6
|
-
|
|
5
|
+
getNeonClient(),
|
|
7
6
|
['name', 'value'],
|
|
8
|
-
|
|
9
|
-
['name LIKE \'test%\''],
|
|
7
|
+
'playing_with_neon',
|
|
8
|
+
[{ column: 'name', condition: 'LIKE', value: '\'test%\'' }],
|
|
10
9
|
'name DESC',
|
|
11
10
|
2,
|
|
12
11
|
)
|
|
File without changes
|