You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there some way to allow karma to use the version of node that is installed locally, rather than downloading v4.2.3? I can see that you set various options here but I don't see any way to override them.
My build is currently failing because one of the libraries I depend on uses some ES6 syntax that node v4 doesn't understand, so I either need to have the build download a more recent node version, or use the local install.
The text was updated successfully, but these errors were encountered:
Hi, I was looking into this and have found a way to change the version of node being used, thanks to this stack overflow post, just add the following to your build.gradle file, putting in whichever node version suits you: node {
// Version of node to use.
version = '8.0.0'
}
Is there some way to allow karma to use the version of node that is installed locally, rather than downloading v4.2.3? I can see that you set various options here but I don't see any way to override them.
My build is currently failing because one of the libraries I depend on uses some ES6 syntax that node v4 doesn't understand, so I either need to have the build download a more recent node version, or use the local install.
The text was updated successfully, but these errors were encountered: