@nuxt/webpack-builder 3.10.2 β 3.11.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/README.md +34 -18
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -13,16 +13,32 @@
|
|
|
13
13
|
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.
|
|
14
14
|
|
|
15
15
|
It provides a number of features that make it easy to build fast, SEO-friendly, and scalable web applications, including:
|
|
16
|
-
- Server-side rendering, Static Site Generation
|
|
17
|
-
- Automatic routing with code-splitting
|
|
18
|
-
-
|
|
19
|
-
- SEO Optimization
|
|
20
|
-
- Auto imports
|
|
21
|
-
-
|
|
16
|
+
- Server-side rendering, Static Site Generation, Hybrid Rendering and Edge-Side Rendering
|
|
17
|
+
- Automatic routing with code-splitting and pre-fetching
|
|
18
|
+
- Data fetching and state management
|
|
19
|
+
- SEO Optimization and Meta tags definition
|
|
20
|
+
- Auto imports of components, composables and utils
|
|
21
|
+
- TypeScript with zero configuration
|
|
22
|
+
- Go fullstack with our server/ directory
|
|
23
|
+
- Extensible with [200+ modules](https://nuxt.com/modules)
|
|
22
24
|
- Deployment to a variety of [hosting platforms](https://nuxt.com/deploy)
|
|
23
25
|
- ...[and much more](https://nuxt.com) π
|
|
24
26
|
|
|
25
|
-
|
|
27
|
+
### Table of Contents
|
|
28
|
+
|
|
29
|
+
- π [Getting Started](#getting-started)
|
|
30
|
+
- π» [ Vue Development](#vue-development)
|
|
31
|
+
- π [Documentation](#documentation)
|
|
32
|
+
- π§© [Modules](#modules)
|
|
33
|
+
- β€οΈ [Contribute](#contribute)
|
|
34
|
+
- π [Local Development](#local-development)
|
|
35
|
+
- β°οΈ [Nuxt 2](#nuxt-2)
|
|
36
|
+
- π [Follow us](#follow-us)
|
|
37
|
+
- βοΈ [License](#license)
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## <a name="getting-started">π Getting Started</a>
|
|
26
42
|
|
|
27
43
|
Use the following command to create a new starter project. This will create a starter project with all the necessary files and dependencies:
|
|
28
44
|
|
|
@@ -30,9 +46,10 @@ Use the following command to create a new starter project. This will create a st
|
|
|
30
46
|
npx nuxi@latest init <my-project>
|
|
31
47
|
```
|
|
32
48
|
|
|
33
|
-
|
|
49
|
+
> [!TIP]
|
|
50
|
+
> Discover also [nuxt.new](https://nuxt.new): Open a Nuxt starter on CodeSandbox, StackBlitz or locally to get up and running in a few seconds.
|
|
34
51
|
|
|
35
|
-
## Vue Development
|
|
52
|
+
## <a name="vue-development">π» Vue Development</a>
|
|
36
53
|
|
|
37
54
|
Simple, intuitive and powerful, Nuxt lets you write Vue components in a way that makes sense. Every repetitive task is automated, so you can focus on writing your full-stack Vue application with confidence.
|
|
38
55
|
|
|
@@ -54,7 +71,7 @@ useSeoMeta({
|
|
|
54
71
|
</div>
|
|
55
72
|
</template>
|
|
56
73
|
|
|
57
|
-
<style>
|
|
74
|
+
<style scoped>
|
|
58
75
|
#app {
|
|
59
76
|
background-color: #020420;
|
|
60
77
|
color: #00DC82;
|
|
@@ -62,15 +79,15 @@ useSeoMeta({
|
|
|
62
79
|
</style>
|
|
63
80
|
```
|
|
64
81
|
|
|
65
|
-
## Documentation
|
|
82
|
+
## <a name="documentation">π Documentation</a>
|
|
66
83
|
|
|
67
84
|
We highly recommend you take a look at the [Nuxt documentation](https://nuxt.com/docs) to level up. Itβs a great resource for learning more about the framework. It covers everything from getting started to advanced topics.
|
|
68
85
|
|
|
69
|
-
## Modules
|
|
86
|
+
## <a name="modules">π§© Modules</a>
|
|
70
87
|
|
|
71
88
|
Discover our [list of modules](https://nuxt.com/modules) to supercharge your Nuxt project, created by the Nuxt team and community.
|
|
72
89
|
|
|
73
|
-
## Contribute
|
|
90
|
+
## <a name="contribute">β€οΈ Contribute</a>
|
|
74
91
|
|
|
75
92
|
We invite you to contribute and help improve Nuxt π
|
|
76
93
|
|
|
@@ -79,21 +96,20 @@ Here are a few ways you can get involved:
|
|
|
79
96
|
- **Suggestions:** Have ideas to enhance Nuxt? We'd love to hear them! Check out the [contribution guide](https://nuxt.com/docs/community/contribution#creating-an-issue) to share your suggestions.
|
|
80
97
|
- **Questions:** If you have questions or need assistance, the [getting help guide](https://nuxt.com/docs/community/getting-help) provides resources to help you out.
|
|
81
98
|
|
|
82
|
-
## Local Development
|
|
99
|
+
## <a name="local-development">π Local Development</a>
|
|
83
100
|
|
|
84
101
|
Follow the docs to [Set Up Your Local Development Environment](https://nuxt.com/docs/community/framework-contribution#setup) to contribute to the framework and documentation.
|
|
85
102
|
|
|
86
|
-
## Nuxt 2
|
|
103
|
+
## <a name="nuxt-2">β°οΈ Nuxt 2</a>
|
|
87
104
|
|
|
88
105
|
You can find the code for Nuxt 2 on the [`2.x` branch](https://github.com/nuxt/nuxt/tree/2.x) and the documentation at [v2.nuxt.com](https://v2.nuxt.com).
|
|
89
106
|
|
|
90
|
-
## Follow us
|
|
107
|
+
## <a name="follow-us">π Follow us</a>
|
|
91
108
|
|
|
92
109
|
<p valign="center">
|
|
93
110
|
<a href="https://chat.nuxt.dev"><img width="20px" src="./.github/assets/discord.svg" alt="Discord"></a> <a href="https://twitter.nuxt.dev"><img width="20px" src="./.github/assets/twitter.svg" alt="Twitter"></a> <a href="https://github.nuxt.dev"><img width="20px" src="./.github/assets/github.svg" alt="GitHub"></a>
|
|
94
111
|
</p>
|
|
95
112
|
|
|
96
|
-
## License
|
|
113
|
+
## <a name="license">βοΈ License</a>
|
|
97
114
|
|
|
98
115
|
[MIT](./LICENSE)
|
|
99
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/webpack-builder",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -23,48 +23,48 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@nuxt/friendly-errors-webpack-plugin": "^2.6.0",
|
|
26
|
-
"autoprefixer": "^10.4.
|
|
26
|
+
"autoprefixer": "^10.4.18",
|
|
27
27
|
"css-loader": "^6.10.0",
|
|
28
28
|
"css-minimizer-webpack-plugin": "^6.0.0",
|
|
29
|
-
"cssnano": "^6.0
|
|
29
|
+
"cssnano": "^6.1.0",
|
|
30
30
|
"defu": "^6.1.4",
|
|
31
|
-
"esbuild-loader": "^4.0
|
|
31
|
+
"esbuild-loader": "^4.1.0",
|
|
32
32
|
"escape-string-regexp": "^5.0.0",
|
|
33
33
|
"estree-walker": "^3.0.3",
|
|
34
34
|
"file-loader": "^6.2.0",
|
|
35
35
|
"fork-ts-checker-webpack-plugin": "^9.0.2",
|
|
36
36
|
"fs-extra": "^11.2.0",
|
|
37
|
-
"h3": "^1.
|
|
37
|
+
"h3": "^1.11.1",
|
|
38
38
|
"hash-sum": "^2.0.0",
|
|
39
39
|
"lodash-es": "4.17.21",
|
|
40
|
-
"magic-string": "^0.30.
|
|
41
|
-
"memfs": "^4.7.
|
|
42
|
-
"mini-css-extract-plugin": "^2.8.
|
|
43
|
-
"mlly": "^1.
|
|
40
|
+
"magic-string": "^0.30.8",
|
|
41
|
+
"memfs": "^4.7.7",
|
|
42
|
+
"mini-css-extract-plugin": "^2.8.1",
|
|
43
|
+
"mlly": "^1.6.1",
|
|
44
44
|
"ohash": "^1.1.3",
|
|
45
45
|
"pathe": "^1.1.2",
|
|
46
46
|
"pify": "^6.1.0",
|
|
47
47
|
"postcss": "^8.4.35",
|
|
48
|
-
"postcss-import": "^16.0.
|
|
48
|
+
"postcss-import": "^16.0.1",
|
|
49
49
|
"postcss-import-resolver": "^2.0.0",
|
|
50
|
-
"postcss-loader": "^8.1.
|
|
50
|
+
"postcss-loader": "^8.1.1",
|
|
51
51
|
"postcss-url": "^10.1.3",
|
|
52
52
|
"pug-plain-loader": "^1.1.0",
|
|
53
53
|
"std-env": "^3.7.0",
|
|
54
54
|
"time-fix-plugin": "^2.0.7",
|
|
55
|
-
"ufo": "^1.
|
|
55
|
+
"ufo": "^1.5.1",
|
|
56
56
|
"unenv": "^1.9.0",
|
|
57
|
-
"unplugin": "^1.
|
|
57
|
+
"unplugin": "^1.10.0",
|
|
58
58
|
"url-loader": "^4.1.1",
|
|
59
59
|
"vue-bundle-renderer": "^2.0.0",
|
|
60
60
|
"vue-loader": "^17.4.2",
|
|
61
|
-
"webpack": "^5.90.
|
|
61
|
+
"webpack": "^5.90.3",
|
|
62
62
|
"webpack-bundle-analyzer": "^4.10.1",
|
|
63
63
|
"webpack-dev-middleware": "^7.0.0",
|
|
64
64
|
"webpack-hot-middleware": "^2.26.1",
|
|
65
65
|
"webpack-virtual-modules": "^0.6.1",
|
|
66
|
-
"webpackbar": "^6.0.
|
|
67
|
-
"@nuxt/kit": "3.
|
|
66
|
+
"webpackbar": "^6.0.1",
|
|
67
|
+
"@nuxt/kit": "3.11.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@types/fs-extra": "11.0.4",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"@types/webpack-hot-middleware": "2.25.9",
|
|
75
75
|
"@types/webpack-virtual-modules": "0.1.3",
|
|
76
76
|
"unbuild": "latest",
|
|
77
|
-
"vue": "3.4.
|
|
78
|
-
"@nuxt/schema": "3.
|
|
77
|
+
"vue": "3.4.21",
|
|
78
|
+
"@nuxt/schema": "3.11.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"vue": "^3.3.4"
|