@nuxtus/nuxtus 1.5.1 → 1.7.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 +22 -0
- package/TODO +14 -4
- package/client/package.json +4 -4
- package/package.json +1 -1
- package/templates/{env-stub.liquid → env-directus.liquid} +1 -2
- package/templates/env-nuxt.liquid +5 -0
- package/client/.env +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
# [1.7.0](https://github.com/nuxtus/nuxtus/compare/v1.6.0...v1.7.0) (2022-09-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* :sparkles: Nuxt pages are deleted when Directus collections are removed ([d060049](https://github.com/nuxtus/nuxtus/commit/d0600496a7ff4936aaf29c982bc97950dc99315a))
|
|
9
|
+
|
|
10
|
+
# [1.6.0](https://github.com/nuxtus/nuxtus/compare/v1.5.2...v1.6.0) (2022-09-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* :sparkles: allow for custom Directus URL ([af115b8](https://github.com/nuxtus/nuxtus/commit/af115b8ab128ae68437ebf79bb73301a96758914))
|
|
16
|
+
* :zap: allow for dynamic default directus credentials ([a4ef43e](https://github.com/nuxtus/nuxtus/commit/a4ef43e21c6d63db99a1597643ddb3abb95f2a61))
|
|
17
|
+
|
|
18
|
+
## [1.5.2](https://github.com/nuxtus/nuxtus/compare/v1.5.1...v1.5.2) (2022-08-30)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* :bug: update @nuxtus/cli to fix token generation issues ([57eed3b](https://github.com/nuxtus/nuxtus/commit/57eed3b9f9d38add0c1a017218b2df36db0152f1))
|
|
24
|
+
|
|
3
25
|
## [1.5.1](https://github.com/nuxtus/nuxtus/compare/v1.5.0...v1.5.1) (2022-08-29)
|
|
4
26
|
|
|
5
27
|
|
package/TODO
CHANGED
|
@@ -2,17 +2,27 @@
|
|
|
2
2
|
Todo:
|
|
3
3
|
☐ Look at https://renovatebot.com/
|
|
4
4
|
☐ Make opening browser window on start optional using npm run start (not possible)
|
|
5
|
-
☐ 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
|
|
6
5
|
☐ GraphQL?
|
|
7
6
|
☐ Websockets (https://github.com/br41nslug/directus-websocket-subscribe)
|
|
8
|
-
✔ Add ability to use Directus static token instead of login (requires nuxt-directus v2.3.0) - UPDATE DOCS cli.md too! @done(22-08-27 09:12)
|
|
9
|
-
✔ Get added to some nuxt/directus lists etc. @done(22-08-27 09:03)
|
|
10
7
|
☐ Remove Google Fonts module (replace with fonts.bunny.net?)
|
|
11
8
|
☐ Nuxtus website should actually pull data from Directus!
|
|
12
9
|
☐ Look into nx for running as monorepo instead of concurrent
|
|
13
|
-
|
|
10
|
+
☐ How/Where to store the installed version of Nuxtus
|
|
11
|
+
✔ Delete a page on item delete @done(22-09-06 20:17)
|
|
12
|
+
☐ Test and prompt if git not installed
|
|
14
13
|
|
|
15
14
|
Archive:
|
|
15
|
+
✔ 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) @project(Todo)
|
|
16
|
+
✔ Add localtunnel to docs @done(22-09-05 16:05) @project(Todo)
|
|
17
|
+
✔ Prompt user to enter email/password for directus @done(22-09-01 17:57) @project(Todo)
|
|
18
|
+
✔ Fix issues with running on Windows (see Github issue) @done(22-09-06 15:17) @project(Todo)
|
|
19
|
+
✔ Update Nuxt and nuxt-directus packages @done(22-09-06 15:58) @project(Todo)
|
|
20
|
+
✔ Need to lock all package versions in nuxtus/nuxtus otherwise incompatabilities can occur @done(22-09-06 16:22) @project(Todo)
|
|
21
|
+
✔ 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)
|
|
22
|
+
✔ Add ability to use Directus static token instead of login (requires nuxt-directus v2.3.0) - UPDATE DOCS cli.md too! @done(22-08-27 09:12) @project(Todo)
|
|
23
|
+
✔ Get added to some nuxt/directus lists etc. @done(22-08-27 09:03) @project(Todo)
|
|
24
|
+
✔ Add Nuxtus logo to index.vue page @done(22-08-24 17:48) @project(Todo)
|
|
25
|
+
✔ If token already generated, do not generate another one (check .env first!) @done(22-08-30 19:51) @project(Todo)
|
|
16
26
|
✔ Handle fetch failures @done(22-08-18 18:06) @project(Todo)
|
|
17
27
|
✔ Update docs.vue to use nuxtus-cli instead @done(22-06-12 20:57) @project(Todo)
|
|
18
28
|
✔ Fix code for singleton page in .vue template @done(22-06-13 19:06) @project(Todo)
|
package/client/package.json
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@nuxtjs/google-fonts": "^1.3.0",
|
|
11
11
|
"@nuxtjs/tailwindcss": "^5.0.4",
|
|
12
|
-
"@nuxtus/cli": "^1.
|
|
13
|
-
"@nuxtus/nuxt-module": "^1.0
|
|
14
|
-
"nuxt": "^3.0.0-rc.
|
|
12
|
+
"@nuxtus/cli": "^1.4.0",
|
|
13
|
+
"@nuxtus/nuxt-module": "^1.2.0",
|
|
14
|
+
"nuxt": "^3.0.0-rc.9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"nuxt-directus": "^
|
|
17
|
+
"nuxt-directus": "^3.0.3"
|
|
18
18
|
}
|
|
19
19
|
}
|
package/package.json
CHANGED
|
@@ -318,8 +318,7 @@ EMAIL_SENDMAIL_PATH="/usr/sbin/sendmail"
|
|
|
318
318
|
|
|
319
319
|
####################################################################################################
|
|
320
320
|
## Default User
|
|
321
|
-
|
|
322
|
-
ADMIN_PASSWORD="password"
|
|
321
|
+
{{ user }}
|
|
323
322
|
|
|
324
323
|
####################################################################################################
|
|
325
324
|
## NUXT SERVER
|