mirror of https://github.com/webpack/webpack.git
Exclude testing in older versions
these versions are too slow
This commit is contained in:
parent
0b3dfcbe42
commit
0b6e9d284c
|
|
@ -1,3 +1,3 @@
|
|||
module.exports = function(config) {
|
||||
return !/^v4/.test(process.version);
|
||||
return !/^v(4|6)/.test(process.version);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
module.exports = function(config) {
|
||||
return !/^v4/.test(process.version);
|
||||
return !/^v(4|6)/.test(process.version);
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue