Add .nvmrc and .node_version with node 14 LTS (#2277)
These 2 configs are widely used by various Node version managers These managers can be easily configured to automatically switch Node version when entering a directory With this change, its more likely that correct Node and NPM version will be used, avoiding accidental usage of incompatible versions Reference for Node managers support can be found here: https://stackoverflow.com/questions/27425852/what-uses-respects-the-node-version-file
This commit is contained in:
parent
105403e4ff
commit
acd596dd45
3 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@
|
|||
!.github
|
||||
!.gitignore
|
||||
!.nvmrc
|
||||
!.node-version
|
||||
!.npmrc
|
||||
!.plop
|
||||
!.prettierignore
|
||||
|
|
1
.node-version
Normal file
1
.node-version
Normal file
|
@ -0,0 +1 @@
|
|||
14.19.0
|
1
.nvmrc
Normal file
1
.nvmrc
Normal file
|
@ -0,0 +1 @@
|
|||
14.19.0
|
Loading…
Reference in a new issue