]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Make Node.js 6 the minimum version.
authorXhmikosR <xhmikosr@gmail.com>
Wed, 27 Sep 2017 13:47:38 +0000 (16:47 +0300)
committerMark Otto <markd.otto@gmail.com>
Sun, 1 Oct 2017 19:01:27 +0000 (12:01 -0700)
Also, be consistent with Node.js' name.

.travis.yml
docs/4.0/getting-started/build-tools.md
docs/4.0/getting-started/download.md
docs/4.0/getting-started/webpack.md
package.json

index 9137d5c4c39136de09e1f1c83cfe1fa7ae90baaa..57c810b0a8b776cacc5f91825f8aeee04b677a9c 100644 (file)
@@ -4,7 +4,7 @@ language: node_js
 git:
   depth: 3
 node_js:
-  - "4"
+  - "6"
   - "8"
 before_install:
   - if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi
index 82b8586ec29ba5621c5403864ede6265bb09fd4b..64b03202130a7d9837f7a10bdae3911491345836 100644 (file)
@@ -12,7 +12,7 @@ Bootstrap uses [NPM scripts](https://docs.npmjs.com/misc/scripts) for its build
 
 To use our build system and run our documentation locally, you'll need a copy of Bootstrap's source files and Node. Follow these steps and you should be ready to rock:
 
-1. [Download and install Node](https://nodejs.org/download/), which we use to manage our dependencies.
+1. [Download and install Node.js](https://nodejs.org/download/), which we use to manage our dependencies.
 2. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [package.json]({{ site.repo }}/blob/v{{ site.current_version }}/package.json).
 3. [Install Ruby][install-ruby], install [Bundler][gembundler] with `gem install bundler`, and finally run `bundle install`. This will install all Ruby dependencies, such as Jekyll and plugins.
   - **Windows users:** Read [this guide](https://jekyllrb.com/docs/windows/) to get Jekyll up and running without problems.
index e3544f6cec2564aad42280027443236e8b21a0b7..cce66017844189bbe20257f92395aadd52ce14b8 100644 (file)
@@ -50,7 +50,7 @@ Pull in Bootstrap's **source files** into nearly any project with some of the mo
 
 ### npm
 
-Install Bootstrap in your Node powered apps with [the npm package](https://www.npmjs.com/package/bootstrap):
+Install Bootstrap in your Node.js powered apps with [the npm package](https://www.npmjs.com/package/bootstrap):
 
 {% highlight sh %}
 npm install bootstrap@{{ site.current_version }}
index d1a40cfed4c44596654694b60e273e822679992b..04af8d4f635ce8fe2da22f2c2cea3ca37d6b94cf 100644 (file)
@@ -8,7 +8,7 @@ toc: true
 
 ## Installing Bootstrap
 
-[Install bootstrap]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/download/#npm) as a node module using npm.
+[Install bootstrap]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/download/#npm) as a Node.js module using npm.
 
 ## Importing JavaScript
 
index 8f7196851e9681b892a5199bf23500b40b03e829..de3c35934662cee82c82633d811f30ba4e45824e 100644 (file)
     "workbox-build": "^2.0.1"
   },
   "engines": {
-    "node": ">=4"
+    "node": ">=6"
   },
   "files": [
     ".babelrc",