]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Docs: add descriptions for Webpack, Parcel and Vite guides (#40714)
authorTommaso Allegretti <61681908+TommasoAllegretti@users.noreply.github.com>
Wed, 18 Dec 2024 21:20:26 +0000 (22:20 +0100)
committerGitHub <noreply@github.com>
Wed, 18 Dec 2024 21:20:26 +0000 (22:20 +0100)
Co-authored-by: Julien Déramond <juderamond@gmail.com>
site/content/docs/5.3/getting-started/parcel.md
site/content/docs/5.3/getting-started/vite.md
site/content/docs/5.3/getting-started/webpack.md

index 73de599c971e2af361a2afd8f267dad683c7c5e5..c2c74bafd1e7c7e022b6514e19762b59f6637b6b 100644 (file)
@@ -13,6 +13,10 @@ thumbnail: guides/bootstrap-parcel@2x.png
 **Want to skip to the end?** Download the source code and working demo for this guide from the [twbs/examples repository](https://github.com/twbs/examples/tree/main/parcel). You can also [open the example in StackBlitz](https://stackblitz.com/github/twbs/examples/tree/main/parcel?file=index.html) but not run it because Parcel isn't currently supported there.
 {{< /callout >}}
 
+## What is Parcel?
+
+[Parcel](https://parceljs.org/) is a web application bundler designed to simplify the development process with a zero-configuration setup out of the box. It offers features found in more advanced bundlers while focusing on ease of use, making it ideal for developers seeking a quick start.
+
 ## Setup
 
 We're building a Parcel project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
index 380f56bc8b1c550f3632bbca827e2041372ae9bb..3a27d65eb83f2b61ea52bb7b94bc4264e3c2c9f7 100644 (file)
@@ -16,6 +16,10 @@ added:
 **Want to skip to the end?** Download the source code and working demo for this guide from the [twbs/examples repository](https://github.com/twbs/examples/tree/main/vite). You can also [open the example in StackBlitz](https://stackblitz.com/github/twbs/examples/tree/main/vite?file=index.html) for live editing.
 {{< /callout >}}
 
+## What is Vite?
+
+[Vite](https://vite.dev/) is a modern frontend build tool designed for speed and simplicity. It provides an efficient and streamlined development experience, especially for modern JavaScript frameworks.
+
 ## Setup
 
 We're building a Vite project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
index af1cbfa832a41c944a4a54edb5bd21beb4e03f03..02eb6c540e77f1fc73a4bacad6c82ae186e46ccd 100644 (file)
@@ -13,6 +13,10 @@ thumbnail: guides/bootstrap-webpack@2x.png
 **Want to skip to the end?** Download the source code and working demo for this guide from the [twbs/examples repository](https://github.com/twbs/examples/tree/main/webpack). You can also [open the example in StackBlitz](https://stackblitz.com/github/twbs/examples/tree/main/webpack?file=index.html) for live editing.
 {{< /callout >}}
 
+## What is Webpack?
+
+[Webpack](https://webpack.js.org/) is a JavaScript module bundler that processes modules and their dependencies to generate static assets. It simplifies managing complex web applications with multiple files and dependencies.
+
 ## Setup
 
 We're building a Webpack project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.