File tree Expand file tree Collapse file tree 4 files changed +1688
-1588
lines changed Expand file tree Collapse file tree 4 files changed +1688
-1588
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ cache:
14
14
15
15
environment :
16
16
matrix :
17
- - nodejs_version : ' 11'
18
- webpack_version : latest
19
- - nodejs_version : ' 10'
17
+ - nodejs_version : ' 6'
20
18
webpack_version : latest
21
19
- nodejs_version : ' 8'
22
20
webpack_version : latest
23
- - nodejs_version : ' 6'
21
+ - nodejs_version : ' 10'
22
+ webpack_version : latest
23
+ - nodejs_version : ' 11'
24
24
webpack_version : latest
25
25
26
26
matrix :
Original file line number Diff line number Diff line change @@ -69,14 +69,17 @@ module.exports = {
69
69
}
70
70
71
71
let fileSystem ;
72
+
72
73
// store our files in memory
73
74
const isConfiguredFs = context . options . fs ;
74
75
const isMemoryFs = ! isConfiguredFs
75
76
&& ! compiler . compilers
76
77
&& compiler . outputFileSystem instanceof MemoryFileSystem ;
77
78
78
79
if ( isConfiguredFs ) {
80
+ // eslint-disable-next-line no-shadow
79
81
const { fs } = context . options ;
82
+
80
83
if ( typeof fs . join !== 'function' ) {
81
84
// very shallow check
82
85
throw new Error ( 'Invalid options: options.fs.join() method is expected' ) ;
You can’t perform that action at this time.
0 commit comments