Browse Source

SONAR-12294 update docs for NodeJS min requirement of 8

tags/8.0
MikeBirnstiehl 4 years ago
parent
commit
b30f06bb42

+ 1
- 1
server/sonar-docs/src/pages/analysis/languages/css.md View File

@@ -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.


+ 1
- 1
server/sonar-docs/src/pages/analysis/languages/javascript.md View File

@@ -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


+ 1
- 1
server/sonar-docs/src/pages/analysis/languages/typescript.md View File

@@ -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:
```

Loading…
Cancel
Save