@nuxtus/nuxtus 1.5.2 → 1.6.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,13 @@
1
1
  Changelog
2
2
 
3
+ # [1.6.0](https://github.com/nuxtus/nuxtus/compare/v1.5.2...v1.6.0) (2022-09-06)
4
+
5
+
6
+ ### Features
7
+
8
+ * :sparkles: allow for custom Directus URL ([af115b8](https://github.com/nuxtus/nuxtus/commit/af115b8ab128ae68437ebf79bb73301a96758914))
9
+ * :zap: allow for dynamic default directus credentials ([a4ef43e](https://github.com/nuxtus/nuxtus/commit/a4ef43e21c6d63db99a1597643ddb3abb95f2a61))
10
+
3
11
  ## [1.5.2](https://github.com/nuxtus/nuxtus/compare/v1.5.1...v1.5.2) (2022-08-30)
4
12
 
5
13
 
package/TODO CHANGED
@@ -8,6 +8,13 @@ Todo:
8
8
  ☐ Nuxtus website should actually pull data from Directus!
9
9
  ☐ Look into nx for running as monorepo instead of concurrent
10
10
  ☐ How/Where to store the installed version of Nuxtus
11
+ ✔ Can I connect Directus Cloud to local Nuxt using Nuxtus? - Could be a good blog article for Directus Blog! @done(22-09-06 15:58)
12
+ ✔ Add localtunnel to docs @done(22-09-05 16:05)
13
+ ✔ Prompt user to enter email/password for directus @done(22-09-01 17:57)
14
+ ☐ Delete a page on item delete
15
+ ✔ Fix issues with running on Windows (see Github issue) @done(22-09-06 15:17)
16
+ ✔ Update Nuxt and nuxt-directus packages @done(22-09-06 15:58)
17
+ ✔ Need to lock all package versions in nuxtus/nuxtus otherwise incompatabilities can occur @done(22-09-06 16:22)
11
18
 
12
19
  Archive:
13
20
  ✔ When adding a new collection the new page triggers a nuxt restart then directus tries to send a field.create which fails. We get around this by getting the create field first but Directus still returns a 404 for the second request. Look into https://github.com/directus/directus/issues/14165?utm_campaign=Newsletter&utm_medium=email&_hsmi=223814263&utm_content=223814263&utm_source=hs_email @done(22-08-29 21:39) @project(Todo)
@@ -10,10 +10,10 @@
10
10
  "@nuxtjs/google-fonts": "^1.3.0",
11
11
  "@nuxtjs/tailwindcss": "^5.0.4",
12
12
  "@nuxtus/cli": "^1.4.0",
13
- "@nuxtus/nuxt-module": "^1.0.4",
14
- "nuxt": "^3.0.0-rc.8"
13
+ "@nuxtus/nuxt-module": "^1.0.5",
14
+ "nuxt": "^3.0.0-rc.9"
15
15
  },
16
16
  "dependencies": {
17
- "nuxt-directus": "^2.3.0"
17
+ "nuxt-directus": "^3.0.3"
18
18
  }
19
19
  }
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.5.2",
4
+ "version": "1.6.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/nuxtus/nuxtus.git"
@@ -318,8 +318,7 @@ EMAIL_SENDMAIL_PATH="/usr/sbin/sendmail"
318
318
 
319
319
  ####################################################################################################
320
320
  ## Default User
321
- ADMIN_EMAIL="admin@example.com"
322
- ADMIN_PASSWORD="password"
321
+ {{ user }}
323
322
 
324
323
  ####################################################################################################
325
324
  ## NUXT SERVER
@@ -0,0 +1,5 @@
1
+ # nuxt-directus required values
2
+ DIRECTUS_URL="{{ directus_url }}"
3
+ # Nuxtus values
4
+ NUXT_PUBLIC_DIRECTUS_EMAIL="{{ email }}"
5
+ NUXT_PUBLIC_DIRECTUS_PASSWORD="{{ password }}"
package/client/.env DELETED
@@ -1,5 +0,0 @@
1
- # Nuxt directus required values
2
- DIRECTUS_URL=http://localhost:8055
3
- # Nuxtus values
4
- NUXT_PUBLIC_DIRECTUS_EMAIL=admin@example.com
5
- NUXT_PUBLIC_DIRECTUS_PASSWORD=password