nuxt-ignis 0.2.4 → 0.2.5

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.2.5 (2025-03-26)
4
+ - build: move `vue` and `vue-router` to devDepencencies (should allow smooth Netlify deployment)
5
+ - build: fix Vite security issue
6
+
3
7
  ## 0.2.4 (2025-03-20)
4
8
  - build: bump `Nuxt` to `3.16.1`, `Nuxt Content` to `3.4.0` + update other deps
5
9
  - build: fix some security issues
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.4"
23
+ "nuxt-ignis": "0.2.5"
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.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Enhanced and customizable Nuxt application starter pack",
5
5
  "keywords": [
6
6
  "nuxt",
@@ -58,21 +58,22 @@
58
58
  "open-props": "1.7.14",
59
59
  "pinia": "3.0.1",
60
60
  "postcss-jit-props": "1.0.16",
61
- "typescript": "latest",
62
- "vue": "latest",
63
- "vue-router": "latest"
61
+ "typescript": "5.7.3"
64
62
  },
65
63
  "pnpm": {
66
64
  "overrides": {
67
65
  "@nuxt/kit": "3.16.1",
68
66
  "eslint": "9.16.0",
69
67
  "esbuild": "^0.25.0",
68
+ "vite": "^6.2.3",
70
69
  "vue-i18n": "^10.0.6",
71
70
  "@babel/helpers": "^7.26.10"
72
71
  }
73
72
  },
74
73
  "devDependencies": {
75
- "nuxt": "3.16.1"
74
+ "nuxt": "3.16.1",
75
+ "vue": "3.5.13",
76
+ "vue-router": "4.5.0"
76
77
  },
77
78
  "packageManager": "pnpm@9.15.9"
78
79
  }