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 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.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
@@ -12,7 +12,7 @@ const nuxtConfig = defu(ignisFeatures, {
12
12
  ],
13
13
 
14
14
  // https://nuxt.com/docs/api/nuxt-config#compatibilitydate
15
- compatibilityDate: '2025-02-09',
15
+ compatibilityDate: '2025-03-20',
16
16
 
17
17
  // simple eslint config - see eslint.config.mjs
18
18
  eslint: {
package/package.json CHANGED
@@ -1,79 +1,78 @@
1
- {
2
- "name": "nuxt-ignis",
3
- "version": "0.2.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.1.0",
40
- "@nuxt/eslint": "0.7.6",
41
- "@nuxt/fonts": "0.10.3",
42
- "@nuxt/image": "1.9.0",
43
- "@nuxt/scripts": "0.10.1",
44
- "@nuxt/ui": "2.21.0",
45
- "@nuxtjs/i18n": "9.1.1",
46
- "@nuxtjs/supabase": "1.4.6",
47
- "@nuxtjs/tailwindcss": "6.13.1",
48
- "@pinia/nuxt": "0.9.0",
49
- "@vueuse/core": "12.5.0",
50
- "@vueuse/nuxt": "12.5.0",
51
- "consola": "3.4.0",
52
- "defu": "6.1.4",
53
- "elrh-pslo": "1.1.6",
54
- "nuxt-neon": "0.4.0",
55
- "nuxt-security": "2.1.5",
56
- "nuxt-spec": "0.0.4",
57
- "nuxt-time": "1.0.3",
58
- "open-props": "1.7.12",
59
- "pinia": "2.3.1",
60
- "postcss-jit-props": "1.0.16",
61
- "typescript": "latest",
62
- "vue": "latest",
63
- "vue-router": "latest"
64
- },
65
- "pnpm": {
66
- "overrides": {
67
- "esbuild": "^0.25.0",
68
- "ioredis": "^5.4.2",
69
- "koa": "^2.15.4",
70
- "vite": "^6.1.0",
71
- "@nuxtjs/mdc": "^0.13.3",
72
- "@nuxt/kit": "3.15.4"
73
- }
74
- },
75
- "devDependencies": {
76
- "nuxt": "3.15.4"
77
- },
78
- "packageManager": "pnpm@9.15.4"
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
+ }
@@ -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
- neon,
5
+ getNeonClient(),
7
6
  ['name', 'value'],
8
- ['playing_with_neon'],
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