aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src/pages/analysis
diff options
context:
space:
mode:
authorMikeBirnstiehl <michael.birnstiehl@sonarsource.com>2019-07-17 20:15:09 +0200
committersonartech <sonartech@sonarsource.com>2019-07-24 08:49:41 +0200
commitb30f06bb4287b884da9082c28f2cfcdea335ae3c (patch)
treefe4552538da5701836d0d6b863c49ecde3e6dd05 /server/sonar-docs/src/pages/analysis
parent12bfa39dec602d97178c9c9967bb2a367dc2c5fc (diff)
downloadsonarqube-b30f06bb4287b884da9082c28f2cfcdea335ae3c.tar.gz
sonarqube-b30f06bb4287b884da9082c28f2cfcdea335ae3c.zip
SONAR-12294 update docs for NodeJS min requirement of 8
Diffstat (limited to 'server/sonar-docs/src/pages/analysis')
-rw-r--r--server/sonar-docs/src/pages/analysis/languages/css.md2
-rw-r--r--server/sonar-docs/src/pages/analysis/languages/javascript.md2
-rw-r--r--server/sonar-docs/src/pages/analysis/languages/typescript.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-docs/src/pages/analysis/languages/css.md b/server/sonar-docs/src/pages/analysis/languages/css.md
index aaafe4d3b00..377afaef2f2 100644
--- a/server/sonar-docs/src/pages/analysis/languages/css.md
+++ b/server/sonar-docs/src/pages/analysis/languages/css.md
@@ -9,7 +9,7 @@ url: /analysis/languages/css/
## Prerequisites
-In order to analyze CSS code, you need to have Node.js >= 6 installed on the machine running the scan. Set property `sonar.nodejs.executable` to an absolute path to Node.js executable, if standard `node` is not available.
+In order to analyze CSS code, you need to have Node.js >= 8 installed on the machine running the scan. Set property `sonar.nodejs.executable` to an absolute path to Node.js executable, if standard `node` is not available.
If you have a community plugin that handles CSS installed on your SonarQube instance it will conflict with SonarCSS, so it should be removed.
diff --git a/server/sonar-docs/src/pages/analysis/languages/javascript.md b/server/sonar-docs/src/pages/analysis/languages/javascript.md
index 25b45e750bd..9171cee8b14 100644
--- a/server/sonar-docs/src/pages/analysis/languages/javascript.md
+++ b/server/sonar-docs/src/pages/analysis/languages/javascript.md
@@ -10,7 +10,7 @@ url: /analysis/languages/javascript/
## Prerequisites
-In order to analyze JavaScript code, you need to have Node.js >= 6 installed on the machine running the scan. Set property `sonar.nodejs.executable` to an absolute path to Node.js executable, if standard `node` is not available.
+In order to analyze JavaScript code, you need to have Node.js >= 8 installed on the machine running the scan. Set property `sonar.nodejs.executable` to an absolute path to Node.js executable, if standard `node` is not available.
## Language-Specific Properties
diff --git a/server/sonar-docs/src/pages/analysis/languages/typescript.md b/server/sonar-docs/src/pages/analysis/languages/typescript.md
index 5d1a1a9e2a5..c1d6130cd16 100644
--- a/server/sonar-docs/src/pages/analysis/languages/typescript.md
+++ b/server/sonar-docs/src/pages/analysis/languages/typescript.md
@@ -10,7 +10,7 @@ url: /analysis/languages/typescript/
## Prerequisites
-In order to analyze TypeScript code, you need to have Node.js >= 6 installed on the machine running the scan. Set property `sonar.typescript.node` to an absolute path to Node.js executable, if standard `node` is not available.
+In order to analyze TypeScript code, you need to have Node.js >= 8 installed on the machine running the scan. Set property `sonar.typescript.node` to an absolute path to Node.js executable, if standard `node` is not available.
Also make sure to have [TypeScript](https://www.npmjs.com/package/typescript) as a project dependency or dev dependency. If it's not the case, add it:
```