nuxt-ignis 0.1.5 → 0.1.6

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,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.6 (2024-12-25)
4
+ - build: bump Nuxt to `3.15.0` + update other deps
5
+
3
6
  ## 0.1.5 (2024-12-21)
4
7
  - feat: more flexible config for `i18n` and `formkit`
5
8
  - docs: improved instructions for using as a layer
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.5"
23
+ "nuxt-ignis": "0.1.6"
24
24
  ```
25
25
 
26
26
  2) Add following section into your `nuxt.config.ts`:
package/nuxt.config.ts CHANGED
@@ -7,7 +7,7 @@ const ignisFeatures = setFeatures()
7
7
  const nuxtConfig = defu(ignisFeatures, {
8
8
 
9
9
  // https://nuxt.com/docs/api/nuxt-config#compatibilitydate
10
- compatibilityDate: '2024-12-01',
10
+ compatibilityDate: '2024-12-25',
11
11
 
12
12
  // simple eslint config - see eslint.config.mjs
13
13
  eslint: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-ignis",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Enhanced and customizable Nuxt application starter pack",
5
5
  "repository": "github:AloisSeckar/nuxt-ignis",
6
6
  "license": "MIT",
@@ -18,30 +18,30 @@
18
18
  "dependencies": {
19
19
  "@formkit/nuxt": "1.6.9",
20
20
  "@nuxt/content": "2.13.4",
21
- "@nuxt/eslint": "0.7.2",
21
+ "@nuxt/eslint": "0.7.4",
22
22
  "@nuxt/image": "1.8.1",
23
- "@nuxt/ui": "2.19.2",
24
- "@nuxtjs/i18n": "9.1.0",
25
- "@nuxtjs/supabase": "1.4.3",
23
+ "@nuxt/ui": "2.20.0",
24
+ "@nuxtjs/i18n": "9.1.1",
25
+ "@nuxtjs/supabase": "1.4.5",
26
26
  "@nuxtjs/tailwindcss": "6.12.2",
27
- "@pinia/nuxt": "0.8.0",
28
- "@vueuse/core": "12.0.0",
29
- "@vueuse/nuxt": "12.0.0",
30
- "consola": "3.2.3",
27
+ "@pinia/nuxt": "0.9.0",
28
+ "@vueuse/core": "12.2.0",
29
+ "@vueuse/nuxt": "12.2.0",
30
+ "consola": "3.3.1",
31
31
  "defu": "6.1.4",
32
32
  "elrh-pslo": "1.1.6",
33
- "nuxt-neon": "0.2.4",
33
+ "nuxt-neon": "0.2.5",
34
34
  "nuxt-security": "2.1.5",
35
35
  "nuxt-time": "1.0.3",
36
- "open-props": "1.7.7",
37
- "pinia": "2.2.8",
38
- "postcss-jit-props": "1.0.14",
36
+ "open-props": "1.7.9",
37
+ "pinia": "2.3.0",
38
+ "postcss-jit-props": "1.0.15",
39
39
  "typescript": "5.7.2",
40
40
  "vue": "latest",
41
41
  "vue-router": "latest"
42
42
  },
43
43
  "devDependencies": {
44
- "nuxt": "3.14.1592"
44
+ "nuxt": "3.15.0"
45
45
  },
46
- "packageManager": "pnpm@9.14.4"
46
+ "packageManager": "pnpm@9.15.1"
47
47
  }