@nuxtus/nuxtus 2.2.2 → 2.2.4
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 +9 -0
- package/package.json +2 -2
- package/renovate.json +4 -2
- package/server/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.4](https://github.com/nuxtus/nuxtus/compare/v2.2.3...v2.2.4) (2026-03-16)
|
|
4
|
+
|
|
5
|
+
## [2.2.3](https://github.com/nuxtus/nuxtus/compare/v2.2.2...v2.2.3) (2024-02-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* :arrow_up: push all node packages to node 20 ([49f4534](https://github.com/nuxtus/nuxtus/commit/49f45343eea11d857d67d1693ec1c8b281bd98a7))
|
|
11
|
+
|
|
3
12
|
## [2.2.2](https://github.com/nuxtus/nuxtus/compare/v2.2.1...v2.2.2) (2024-02-23)
|
|
4
13
|
|
|
5
14
|
## [2.2.1](https://github.com/nuxtus/nuxtus/compare/v2.2.0...v2.2.1) (2024-02-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.
|
|
4
|
+
"version": "2.2.4",
|
|
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",
|
package/renovate.json
CHANGED