Skip to content

Commit bcfa068

Browse files
committed
docs
1 parent 65b7f69 commit bcfa068

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ npm install grunt-node-version-windows --save-dev
1616
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
1717

1818
```js
19-
grunt.loadNpmTasks('grunt-node-version-windows');
19+
grunt.loadNpmTasks("grunt-node-version-windows");
2020
```
2121

2222

@@ -30,10 +30,10 @@ grunt.initConfig({
3030
node_version: {
3131
options: {
3232
alwaysInstall: false,
33-
errorLevel: 'fatal',
33+
errorLevel: "fatal",
3434
globals: [],
3535
nvm: true,
36-
override: "",
36+
override: ""
3737
debug: false
3838
}
3939
}
@@ -50,9 +50,9 @@ A boolean that determines whether to install the latest compatible version of no
5050

5151
#### options.errorLevel
5252
Type: `String`
53-
Default value: `'fatal'`
53+
Default value: `"fatal"`
5454

55-
The level of error given when the wrong node version is being used. Accepted values are `'warn'` and `'fatal'`. Warn can can be overidden with `--force`, fatal cannot.
55+
The level of error given when the wrong node version is being used. Accepted values are `"warn"` and `"fatal"`. Warn can can be overidden with `--force`, fatal cannot.
5656

5757
#### options.globals
5858
Type: `Array`
@@ -68,7 +68,7 @@ A boolean that determines whether to attempt to use/install a version of node co
6868

6969
#### options.override
7070
Type: `String`
71-
Default value: `''`
71+
Default value: `""`
7272

7373
If you want to override the version specified in your project's `package.json`, specify the version you want to use instead here. This is primarily intended for testing projects on other versions of node.
7474

0 commit comments

Comments
 (0)