@serwist/nuxt 9.0.15 → 9.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/dist/module.json +2 -3
- package/dist/module.mjs +3 -4
- package/package.json +12 -12
package/dist/module.json
CHANGED
@@ -2,10 +2,9 @@
|
|
2
2
|
"name": "@serwist/nuxt",
|
3
3
|
"configKey": "serwist",
|
4
4
|
"compatibility": {
|
5
|
-
"nuxt": "^3.8.0"
|
6
|
-
"bridge": false
|
5
|
+
"nuxt": "^3.8.0 || ^4.0.0"
|
7
6
|
},
|
8
|
-
"version": "9.0
|
7
|
+
"version": "9.1.0",
|
9
8
|
"builder": {
|
10
9
|
"@nuxt/module-builder": "1.0.1",
|
11
10
|
"unbuild": "unknown"
|
package/dist/module.mjs
CHANGED
@@ -5,7 +5,7 @@ import { createHash } from 'node:crypto';
|
|
5
5
|
import { createReadStream } from 'node:fs';
|
6
6
|
import fsp from 'node:fs/promises';
|
7
7
|
|
8
|
-
const version = "9.0
|
8
|
+
const version = "9.1.0";
|
9
9
|
|
10
10
|
function configurePwaOptions(options, nuxt, nitroConfig) {
|
11
11
|
let buildAssetsDir = nuxt.options.app.buildAssetsDir ?? "_nuxt/";
|
@@ -81,13 +81,12 @@ const module = defineNuxtModule({
|
|
81
81
|
name: "@serwist/nuxt",
|
82
82
|
configKey: "serwist",
|
83
83
|
compatibility: {
|
84
|
-
nuxt: "^3.8.0"
|
85
|
-
bridge: false
|
84
|
+
nuxt: "^3.8.0 || ^4.0.0"
|
86
85
|
},
|
87
86
|
version
|
88
87
|
},
|
89
88
|
defaults(nuxt) {
|
90
|
-
const publicDir =
|
89
|
+
const publicDir = path.resolve(nuxt.options.rootDir, ".output/public");
|
91
90
|
return {
|
92
91
|
base: nuxt.options.app.baseURL,
|
93
92
|
scope: nuxt.options.app.baseURL,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@serwist/nuxt",
|
3
|
-
"version": "9.0
|
3
|
+
"version": "9.1.0",
|
4
4
|
"type": "module",
|
5
5
|
"description": "A Nuxt module that integrates Serwist into your application.",
|
6
6
|
"files": [
|
@@ -50,23 +50,23 @@
|
|
50
50
|
]
|
51
51
|
},
|
52
52
|
"dependencies": {
|
53
|
-
"@nuxt/kit": "
|
54
|
-
"@serwist/build": "9.0
|
55
|
-
"@serwist/vite": "9.0
|
56
|
-
"@serwist/window": "9.0
|
53
|
+
"@nuxt/kit": "4.0.0",
|
54
|
+
"@serwist/build": "9.1.0",
|
55
|
+
"@serwist/vite": "9.1.0",
|
56
|
+
"@serwist/window": "9.1.0"
|
57
57
|
},
|
58
58
|
"devDependencies": {
|
59
59
|
"@nuxt/module-builder": "1.0.1",
|
60
|
-
"@nuxt/schema": "
|
61
|
-
"@types/node": "24.0.
|
62
|
-
"eslint": "9.
|
63
|
-
"nuxt": "
|
60
|
+
"@nuxt/schema": "4.0.0",
|
61
|
+
"@types/node": "24.0.14",
|
62
|
+
"eslint": "9.31.0",
|
63
|
+
"nuxt": "4.0.0",
|
64
64
|
"rimraf": "5.0.9",
|
65
65
|
"serve": "14.2.4",
|
66
66
|
"typescript": "5.8.3",
|
67
|
-
"vite": "
|
68
|
-
"vue-tsc": "
|
69
|
-
"@serwist/configs": "9.0
|
67
|
+
"vite": "7.0.4",
|
68
|
+
"vue-tsc": "3.0.1",
|
69
|
+
"@serwist/configs": "9.1.0"
|
70
70
|
},
|
71
71
|
"peerDependencies": {
|
72
72
|
"typescript": ">=5.0.0",
|