@nuxtus/nuxtus 2.0.1 → 2.1.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 +7 -0
- package/README.md +8 -0
- package/TODO +2 -0
- package/client/package.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
# [2.1.0](https://github.com/nuxtus/nuxtus/compare/v2.0.1...v2.1.0) (2022-11-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* :sparkles: Update @nuxtus/nuxt-module and @nuxtus/cli ([3894e84](https://github.com/nuxtus/nuxtus/commit/3894e8445053b3a9d4c333cb003c6dad2f527aac))
|
|
9
|
+
|
|
3
10
|
## [2.0.1](https://github.com/nuxtus/nuxtus/compare/v2.0.0...v2.0.1) (2022-11-18)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
# Nuxtus
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
A website w/ CMS boilerplate and set of utilities for using [Directus](https://directus.io) for backend CMS and [Nuxt](https://nuxtjs.org) (w/ Tailwind CSS) for frontend. Can also **automagically** create *typed* pages when you create Directus collections.
|
|
4
6
|
|
|
5
7
|
> Can be used as a boilerplate or individually as a suite of utilities.
|
|
6
8
|
|
|
9
|
+
## Quick start
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx create-nuxtus app-name
|
|
13
|
+
```
|
|
14
|
+
|
|
7
15
|
For more details visit [nuxtus.com](https://nuxtus.com) or [read the documentation](https://docs.nuxtus.com)
|
|
8
16
|
|
|
9
17
|
https://user-images.githubusercontent.com/324026/175020548-57ee94b3-dee4-4b12-a8c8-6c0f1a94fab4.mov
|
package/TODO
CHANGED
|
@@ -6,6 +6,8 @@ Todo:
|
|
|
6
6
|
☐ Detect when Directus is not running and show error message
|
|
7
7
|
☐ Use nuxt.config in generator login.ts instead of env
|
|
8
8
|
☐ Move the Directus email/password and token to private server variables and use a server middleware (https://nuxt.com/docs/guide/directory-structure/server#server-middleware) to login and provide AUTH_TOKEN back to client. This workflow only needed if not rendering a static site.
|
|
9
|
+
☐ Make nuxtus/nuxtus readme more of a landing page for the entire nuxt project
|
|
10
|
+
☐ Move @nuxtus/generator to Rollup v3
|
|
9
11
|
|
|
10
12
|
Archive:
|
|
11
13
|
✔ Make opening browser window on start optional using npm run start (not possible) @done(22-09-14 16:44) @project(Todo)
|
package/client/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@nuxtjs/google-fonts": "2.0.0",
|
|
11
11
|
"@nuxtjs/tailwindcss": "6.1.3",
|
|
12
|
-
"@nuxtus/cli": "
|
|
13
|
-
"@nuxtus/nuxt-module": "2.
|
|
12
|
+
"@nuxtus/cli": "2.0.0",
|
|
13
|
+
"@nuxtus/nuxt-module": "2.2.0",
|
|
14
14
|
"nuxt": "3.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|