nuxt-ignis 0.1.7 → 0.1.8

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.8 (2025-02-02)
4
+ - build: fix `nuxt-neon` security issue
5
+ - build: fix `vite` security issue
6
+
3
7
  ## 0.1.7 (2025-01-31)
4
8
  - feat: unified test-pack included via separate `nuxt-spec` layer
5
9
  - feat: support `ssr` and `pages` settings
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.1.7"
23
+ "nuxt-ignis": "0.1.8"
24
24
  ```
25
25
 
26
26
  2) Add following section into your `nuxt.config.ts`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-ignis",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Enhanced and customizable Nuxt application starter pack",
5
5
  "repository": "github:AloisSeckar/nuxt-ignis",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "consola": "3.4.0",
32
32
  "defu": "6.1.4",
33
33
  "elrh-pslo": "1.1.6",
34
- "nuxt-neon": "0.2.5",
34
+ "nuxt-neon": "0.3.0",
35
35
  "nuxt-security": "2.1.5",
36
36
  "nuxt-spec": "0.0.2",
37
37
  "nuxt-time": "1.0.3",
@@ -42,6 +42,11 @@
42
42
  "vue": "latest",
43
43
  "vue-router": "latest"
44
44
  },
45
+ "pnpm": {
46
+ "overrides": {
47
+ "vite": "latest"
48
+ }
49
+ },
45
50
  "devDependencies": {
46
51
  "nuxt": "3.15.4"
47
52
  },