@nuxtus/nuxtus 1.8.1 → 1.9.1
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 +14 -0
- package/client/nuxt.config.ts +2 -4
- package/client/package.json +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.1](https://github.com/nuxtus/nuxtus/compare/v1.9.0...v1.9.1) (2022-11-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* :bug: Fix nuxt.config declaration ([a305d5d](https://github.com/nuxtus/nuxtus/commit/a305d5dcae45fe3cc3904900184ffb47cf8da07d))
|
|
9
|
+
|
|
10
|
+
# [1.9.0](https://github.com/nuxtus/nuxtus/compare/v1.8.1...v1.9.0) (2022-11-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* :sparkles: Update all dependencies to Nuxt 3.0.0 compatible ([d46d787](https://github.com/nuxtus/nuxtus/commit/d46d787b482e7d296bdbfb90433d37b1d44f06bb))
|
|
16
|
+
|
|
3
17
|
## [1.8.1](https://github.com/nuxtus/nuxtus/compare/v1.8.0...v1.8.1) (2022-11-10)
|
|
4
18
|
|
|
5
19
|
|
package/client/nuxt.config.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { defineNuxtConfig } from 'nuxt'
|
|
2
|
-
|
|
3
1
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
4
|
-
export default
|
|
2
|
+
export default {
|
|
5
3
|
buildModules: [
|
|
6
4
|
"@nuxtjs/tailwindcss",
|
|
7
5
|
],
|
|
@@ -23,4 +21,4 @@ export default defineNuxtConfig({
|
|
|
23
21
|
directusEmail: "",
|
|
24
22
|
directusPassword: "",
|
|
25
23
|
},
|
|
26
|
-
}
|
|
24
|
+
}
|
package/client/package.json
CHANGED
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"@nuxtjs/google-fonts": "2.0.0",
|
|
11
11
|
"@nuxtjs/tailwindcss": "6.1.3",
|
|
12
12
|
"@nuxtus/cli": "1.5.0",
|
|
13
|
-
"@nuxtus/nuxt-module": "1.
|
|
14
|
-
"nuxt": "3.0.0
|
|
13
|
+
"@nuxtus/nuxt-module": "1.3.0",
|
|
14
|
+
"nuxt": "3.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"nuxt-directus": "3.2.
|
|
17
|
+
"nuxt-directus": "3.2.2"
|
|
18
18
|
}
|
|
19
19
|
}
|