@nuxtus/nuxtus 1.9.1 → 2.0.0

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,22 @@
1
1
  Changelog
2
2
 
3
+ # [2.0.0](https://github.com/nuxtus/nuxtus/compare/v1.9.1...v2.0.0) (2022-11-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * :bug: Update to Nuxt 3.0.0 runtime config ([73b0f2e](https://github.com/nuxtus/nuxtus/commit/73b0f2e087eef704a766910b583d02f465a8ceb5))
9
+
10
+
11
+ ### chore
12
+
13
+ * :memo: Update TODO ([4d4135b](https://github.com/nuxtus/nuxtus/commit/4d4135b37dee893ccec47db64b6b259bf27b16b8))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * Directus credentials are now stored in different variable names in nuxt.config.ts and .env
19
+
3
20
  ## [1.9.1](https://github.com/nuxtus/nuxtus/compare/v1.9.0...v1.9.1) (2022-11-17)
4
21
 
5
22
 
package/TODO CHANGED
@@ -1,12 +1,13 @@
1
1
 
2
2
  Todo:
3
- ✔ Make opening browser window on start optional using npm run start (not possible) @done(22-09-14 16:44)
4
3
  ☐ GraphQL?
5
4
  ☐ Websockets (https://github.com/br41nslug/directus-websocket-subscribe)
6
5
  ☐ Nuxtus website should actually pull data from Directus!
7
6
  ☐ Detect when Directus is not running and show error message
8
7
 
9
8
  Archive:
9
+ ✔ Make opening browser window on start optional using npm run start (not possible) @done(22-09-14 16:44) @project(Todo)
10
+ ✔ Update to Nuxt 3.0.0 @done(22-11-18 11:33) @project(Todo)
10
11
  ✔ Look at https://renovatebot.com/ @done(22-09-12 16:20) @project(Todo)
11
12
  ✔ Remove Google Fonts module (replace with fonts.bunny.net?) - won't do @done(22-09-14 15:55) @project(Todo)
12
13
  ✔ Look into nx for running as monorepo instead of concurrent @done(22-09-11 15:50) @project(Todo)
@@ -17,8 +17,12 @@ export default {
17
17
  nuxtus: {
18
18
  authDirectus: true,
19
19
  },
20
- publicRuntimeConfig: {
21
- directusEmail: "",
22
- directusPassword: "",
23
- },
20
+ runtimeConfig: {
21
+ nuxtus: {
22
+ directus: {
23
+ email: '',
24
+ password: ''
25
+ }
26
+ }
27
+ }
24
28
  }
@@ -10,7 +10,7 @@
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.3.0",
13
+ "@nuxtus/nuxt-module": "2.0.0",
14
14
  "nuxt": "3.0.0"
15
15
  },
16
16
  "dependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxtus/nuxtus",
3
3
  "description": "Directus/Nuxt boilerplate with Tailwind CSS.",
4
- "version": "1.9.1",
4
+ "version": "2.0.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/nuxtus/nuxtus.git"
@@ -11,6 +11,6 @@
11
11
  "author": "",
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
- "directus": "^9.16.1"
14
+ "directus": "^9.21.0"
15
15
  }
16
16
  }
@@ -1,5 +1,5 @@
1
1
  # nuxt-directus required values
2
2
  DIRECTUS_URL="{{ directus_url }}"
3
3
  # Nuxtus values
4
- NUXT_PUBLIC_DIRECTUS_EMAIL="{{ email }}"
5
- NUXT_PUBLIC_DIRECTUS_PASSWORD="{{ password }}"
4
+ NUXT_NUXTUS_DIRECTUS_EMAIL="{{ email }}"
5
+ NUXT_NUXTUS_DIRECTUS_PASSWORD="{{ password }}"