Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
Diffstat (limited to 'site')
-rw-r--r--site/content/docs/5.0/getting-started/download.md4
-rw-r--r--site/data/docs-versions.yml2
-rw-r--r--site/layouts/partials/home/masthead-followup.html2
3 files changed, 4 insertions, 4 deletions
diff --git a/site/content/docs/5.0/getting-started/download.md b/site/content/docs/5.0/getting-started/download.md
index 48578572b0..e3c982d30f 100644
--- a/site/content/docs/5.0/getting-started/download.md
+++ b/site/content/docs/5.0/getting-started/download.md
@@ -59,7 +59,7 @@ Pull in Bootstrap's **source files** into nearly any project with some of the mo
Install Bootstrap in your Node.js powered apps with [the npm package](https://www.npmjs.com/package/bootstrap):
```sh
-npm install bootstrap@next
+npm install bootstrap
```
`const bootstrap = require('bootstrap')` or `import bootstrap from 'bootstrap'` will load all of Bootstrap's plugins onto a `bootstrap` object.
@@ -79,7 +79,7 @@ Bootstrap's `package.json` contains some additional metadata under the following
Install Bootstrap in your Node.js powered apps with [the yarn package](https://yarnpkg.com/en/package/bootstrap):
```sh
-yarn add bootstrap@next
+yarn add bootstrap
```
### RubyGems
diff --git a/site/data/docs-versions.yml b/site/data/docs-versions.yml
index b4fb88f052..9426eeac85 100644
--- a/site/data/docs-versions.yml
+++ b/site/data/docs-versions.yml
@@ -48,6 +48,6 @@
- group: v5.x
baseurl: "https://getbootstrap.com/docs"
- description: "Current major release. Last update was v5.0.0-beta3."
+ description: "Current major release. Last update was v5.0.0."
versions:
- v: "5.0"
diff --git a/site/layouts/partials/home/masthead-followup.html b/site/layouts/partials/home/masthead-followup.html
index 5371e8583f..e6cfb4724c 100644
--- a/site/layouts/partials/home/masthead-followup.html
+++ b/site/layouts/partials/home/masthead-followup.html
@@ -12,7 +12,7 @@
<a class="btn btn-lg btn-outline-primary mb-3" href="/docs/{{ .Site.Params.docs_version }}/getting-started/download/">Read installation docs</a>
</div>
<div class="col-md-7 ps-md-5">
- {{ highlight "npm install bootstrap@next" "sh" "" }}
+ {{ highlight "npm install bootstrap" "sh" "" }}
{{ highlight (printf ("gem install bootstrap -v %s") .Site.Params.current_ruby_version) "sh" "" }}
</div>
</section>