@nuxt/rspack-builder-nightly 4.3.0-29356103.2f7957ac → 4.3.0-29430576.f48ea4c8
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/README.md +8 -8
- package/dist/index.mjs +1 -1
- package/package.json +19 -18
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
[](https://nuxt.com)
|
|
2
2
|
|
|
3
3
|
# Nuxt
|
|
4
4
|
|
|
5
5
|
<p>
|
|
6
6
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/v/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="Version"></a>
|
|
7
7
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/dm/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="Downloads"></a>
|
|
8
|
-
<a href="https://github.com/nuxt/nuxt/
|
|
8
|
+
<a href="https://github.com/nuxt/nuxt/blob/main/LICENSE"><img src="https://img.shields.io/github/license/nuxt/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="License"></a>
|
|
9
9
|
<a href="https://nuxt.com"><img src="https://img.shields.io/badge/Nuxt%20Docs-18181B?logo=nuxt" alt="Website"></a>
|
|
10
10
|
<a href="https://chat.nuxt.dev"><img src="https://img.shields.io/badge/Nuxt%20Discord-18181B?logo=discord" alt="Discord"></a>
|
|
11
11
|
<a href="https://securityscorecards.dev/"><img src="https://api.securityscorecards.dev/projects/github.com/nuxt/nuxt/badge" alt="Nuxt openssf scorecard score"></a>
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.
|
|
15
15
|
|
|
16
16
|
It provides a number of features that make it easy to build fast, SEO-friendly, and scalable web applications, including:
|
|
17
|
-
- Server-side rendering,
|
|
17
|
+
- Server-side rendering, static site generation, hybrid rendering and edge-side rendering
|
|
18
18
|
- Automatic routing with code-splitting and pre-fetching
|
|
19
19
|
- Data fetching and state management
|
|
20
|
-
-
|
|
20
|
+
- Search engine optimization and defining meta tags
|
|
21
21
|
- Auto imports of components, composables and utils
|
|
22
22
|
- TypeScript with zero configuration
|
|
23
|
-
- Go
|
|
23
|
+
- Go full-stack with our server/ directory
|
|
24
24
|
- Extensible with [200+ modules](https://nuxt.com/modules)
|
|
25
25
|
- Deployment to a variety of [hosting platforms](https://nuxt.com/deploy)
|
|
26
26
|
- ...[and much more](https://nuxt.com) 🚀
|
|
@@ -31,7 +31,7 @@ It provides a number of features that make it easy to build fast, SEO-friendly,
|
|
|
31
31
|
- 💻 [ Vue Development](#vue-development)
|
|
32
32
|
- 📖 [Documentation](#documentation)
|
|
33
33
|
- 🧩 [Modules](#modules)
|
|
34
|
-
- ❤️
|
|
34
|
+
- ❤️ [Contribute](#contribute)
|
|
35
35
|
- 🏠 [Local Development](#local-development)
|
|
36
36
|
- 🛟 [Professional Support](#professional-support)
|
|
37
37
|
- 🔗 [Follow Us](#follow-us)
|
|
@@ -109,9 +109,9 @@ Follow the docs to [Set Up Your Local Development Environment](https://nuxt.com/
|
|
|
109
109
|
## <a name="follow-us">🔗 Follow Us</a>
|
|
110
110
|
|
|
111
111
|
<p valign="center">
|
|
112
|
-
<a href="https://go.nuxt.com/discord"><img width="20px" src="https://github.com/nuxt/nuxt/
|
|
112
|
+
<a href="https://go.nuxt.com/discord"><img width="20px" src="https://github.com/nuxt/nuxt/blob/main/.github/assets/discord.svg" alt="Discord"></a> <a href="https://go.nuxt.com/x"><img width="20px" src="https://github.com/nuxt/nuxt/blob/main/.github/assets/twitter.svg" alt="Twitter"></a> <a href="https://go.nuxt.com/github"><img width="20px" src="https://github.com/nuxt/nuxt/blob/main/.github/assets/github.svg" alt="GitHub"></a> <a href="https://go.nuxt.com/bluesky"><img width="20px" src="https://github.com/nuxt/nuxt/blob/main/.github/assets/bluesky.svg" alt="Bluesky"></a>
|
|
113
113
|
</p>
|
|
114
114
|
|
|
115
115
|
## <a name="license">⚖️ License</a>
|
|
116
116
|
|
|
117
|
-
[MIT](https://github.com/nuxt/nuxt/
|
|
117
|
+
[MIT](https://github.com/nuxt/nuxt/blob/main/LICENSE)
|
package/dist/index.mjs
CHANGED
|
@@ -987,7 +987,7 @@ function clientHMR(ctx) {
|
|
|
987
987
|
const hotMiddlewareClientOptionsStr = querystring.stringify(hotMiddlewareClientOptions);
|
|
988
988
|
const app = ctx.config.entry.app;
|
|
989
989
|
app.unshift(
|
|
990
|
-
// https://github.com/
|
|
990
|
+
// https://github.com/webpack/webpack-hot-middleware#config
|
|
991
991
|
`webpack-hot-middleware/client?${hotMiddlewareClientOptionsStr}`
|
|
992
992
|
);
|
|
993
993
|
ctx.config.plugins ||= [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/rspack-builder-nightly",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-29430576.f48ea4c8",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -27,21 +27,21 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@nuxt/friendly-errors-webpack-plugin": "^2.6.0",
|
|
30
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-
|
|
31
|
-
"@rspack/core": "^1.
|
|
32
|
-
"autoprefixer": "^10.4.
|
|
30
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-29430576.f48ea4c8",
|
|
31
|
+
"@rspack/core": "^1.6.7",
|
|
32
|
+
"autoprefixer": "^10.4.22",
|
|
33
33
|
"css-loader": "^7.1.2",
|
|
34
|
-
"css-minimizer-webpack-plugin": "^7.0.
|
|
35
|
-
"cssnano": "^7.1.
|
|
34
|
+
"css-minimizer-webpack-plugin": "^7.0.4",
|
|
35
|
+
"cssnano": "^7.1.2",
|
|
36
36
|
"defu": "^6.1.4",
|
|
37
37
|
"esbuild-loader": "^4.4.0",
|
|
38
38
|
"escape-string-regexp": "^5.0.0",
|
|
39
39
|
"file-loader": "^6.2.0",
|
|
40
40
|
"h3": "^1.15.4",
|
|
41
41
|
"jiti": "^2.6.1",
|
|
42
|
-
"knitwork": "^1.
|
|
42
|
+
"knitwork": "^1.3.0",
|
|
43
43
|
"magic-string": "^0.30.21",
|
|
44
|
-
"memfs": "^4.
|
|
44
|
+
"memfs": "^4.51.1",
|
|
45
45
|
"ohash": "^2.0.11",
|
|
46
46
|
"pathe": "^2.0.3",
|
|
47
47
|
"pify": "^6.1.0",
|
|
@@ -51,38 +51,39 @@
|
|
|
51
51
|
"postcss-loader": "^8.2.0",
|
|
52
52
|
"postcss-url": "^10.1.3",
|
|
53
53
|
"pug-plain-loader": "^1.1.0",
|
|
54
|
-
"seroval": "^1.
|
|
54
|
+
"seroval": "^1.4.0",
|
|
55
55
|
"std-env": "^3.10.0",
|
|
56
56
|
"time-fix-plugin": "^2.0.7",
|
|
57
57
|
"tinyglobby": "^0.2.15",
|
|
58
|
-
"ts-checker-rspack-plugin": "^1.1
|
|
58
|
+
"ts-checker-rspack-plugin": "^1.2.1",
|
|
59
59
|
"ufo": "^1.6.1",
|
|
60
|
-
"unenv": "^2.0.0-rc.
|
|
61
|
-
"unplugin": "^2.3.
|
|
60
|
+
"unenv": "^2.0.0-rc.24",
|
|
61
|
+
"unplugin": "^2.3.11",
|
|
62
62
|
"url-loader": "^4.1.1",
|
|
63
63
|
"vue-bundle-renderer": "^2.2.0",
|
|
64
64
|
"vue-loader": "^17.4.2",
|
|
65
|
-
"webpack-bundle-analyzer": "^
|
|
65
|
+
"webpack-bundle-analyzer": "^5.1.0",
|
|
66
66
|
"webpack-dev-middleware": "^7.4.5",
|
|
67
67
|
"webpack-hot-middleware": "^2.26.1",
|
|
68
68
|
"webpackbar": "^7.0.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-
|
|
71
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29430576.f48ea4c8",
|
|
72
72
|
"@types/webpack-bundle-analyzer": "4.7.0",
|
|
73
|
-
"@types/webpack-hot-middleware": "2.25.
|
|
74
|
-
"rollup": "4.
|
|
73
|
+
"@types/webpack-hot-middleware": "2.25.12",
|
|
74
|
+
"rollup": "4.53.3",
|
|
75
75
|
"unbuild": "3.6.1",
|
|
76
|
-
"vue": "3.5.
|
|
76
|
+
"vue": "3.5.25"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"vue": "^3.3.4"
|
|
80
80
|
},
|
|
81
81
|
"engines": {
|
|
82
|
-
"node": "^
|
|
82
|
+
"node": "^20.9.0 || >=22.0.0"
|
|
83
83
|
},
|
|
84
84
|
"_name": "@nuxt/rspack-builder",
|
|
85
85
|
"scripts": {
|
|
86
|
+
"build:stub": "unbuild --stub",
|
|
86
87
|
"test:attw": "attw --pack"
|
|
87
88
|
}
|
|
88
89
|
}
|