@nuxtus/nuxtus 2.2.1 → 2.2.3

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,14 @@
1
1
  Changelog
2
2
 
3
+ ## [2.2.3](https://github.com/nuxtus/nuxtus/compare/v2.2.2...v2.2.3) (2024-02-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * :arrow_up: push all node packages to node 20 ([49f4534](https://github.com/nuxtus/nuxtus/commit/49f45343eea11d857d67d1693ec1c8b281bd98a7))
9
+
10
+ ## [2.2.2](https://github.com/nuxtus/nuxtus/compare/v2.2.1...v2.2.2) (2024-02-23)
11
+
3
12
  ## [2.2.1](https://github.com/nuxtus/nuxtus/compare/v2.2.0...v2.2.1) (2024-02-22)
4
13
 
5
14
 
package/README.md CHANGED
@@ -23,10 +23,10 @@ It also includes [nuxtus/cli]("https://github.com/nuxtus/cli") which provides a
23
23
 
24
24
  The below shows the Nuxtus projects in order based on packages that depend on each other with generator having no Nuxtus dependencies and create-nuxtus requiring all packages. This assists in development and deployment of new versions.
25
25
 
26
- generator :: creates nuxt pages from Directus collections
27
- nuxt-module :: a Nuxt module that includes generator for creating nuxt pages in a nuxt project during development
28
- nuxt-cli :: a CLI tool to manually generate Nuxt pages rather than using autogeneration, used within a Nuxt project
29
- localtunnel :: a Nuxt module that allows external access to a local Nuxt development project using Local Tunnel
30
- hook :: a Directus webhook extension that handles the automatic creation of Nuxt pages and types when a new collection is created in Directus
31
- nuxtus :: the boilerplate project used by create-nuxtus to generate the Directus server and Nuxtus client
32
- create-nuxtus :: npx package to quickly and easily create a new Nuxtus project
26
+ - generator :: creates nuxt pages from Directus collections
27
+ - nuxt-module :: a Nuxt module that includes generator for creating nuxt pages in a nuxt project during development
28
+ - nuxt-cli :: a CLI tool to manually generate Nuxt pages rather than using autogeneration, used within a Nuxt project
29
+ - localtunnel :: a Nuxt module that allows external access to a local Nuxt development project using Local Tunnel
30
+ - hook :: a Directus webhook extension that handles the automatic creation of Nuxt pages and types when a new collection is created in Directus
31
+ - nuxtus :: the boilerplate project used by create-nuxtus to generate the Directus server and Nuxtus client
32
+ - create-nuxtus :: npx package to quickly and easily create a new Nuxtus project
@@ -10,10 +10,13 @@
10
10
  "@nuxtjs/google-fonts": "3.1.3",
11
11
  "@nuxtjs/tailwindcss": "6.11.4",
12
12
  "@nuxtus/cli": "2.1.0",
13
- "@nuxtus/nuxt-module": "2.3.1",
13
+ "@nuxtus/nuxt-module": "2.4.0",
14
14
  "nuxt": "^3.10.2"
15
15
  },
16
16
  "dependencies": {
17
17
  "@directus/sdk": "^15.0.1"
18
+ },
19
+ "volta": {
20
+ "node": "20.11.1"
18
21
  }
19
22
  }
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": "2.2.1",
4
+ "version": "2.2.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/nuxtus/nuxtus.git"
@@ -29,7 +29,7 @@
29
29
  "scripts": {
30
30
  "client": "cd client && npm run dev -- -o",
31
31
  "server": "cd server && npx directus start",
32
- "start": "concurrently \"npm run server\" \"npm run client\""
32
+ "start": "concurrently --kill-others \"npm run server\" \"npm run client\""
33
33
  },
34
34
  "devDependencies": {
35
35
  "@semantic-release/changelog": "^6.0.1",
@@ -12,5 +12,8 @@
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
14
  "directus": "^10.0.0"
15
+ },
16
+ "volta": {
17
+ "node": "20.11.1"
15
18
  }
16
- }
19
+ }