Skip to content

Commit a54dd45

Browse files
chore(deps): update (webpack#373)
1 parent 2a84dd4 commit a54dd45

File tree

4 files changed

+1688
-1588
lines changed

4 files changed

+1688
-1588
lines changed

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ cache:
1414

1515
environment:
1616
matrix:
17-
- nodejs_version: '11'
18-
webpack_version: latest
19-
- nodejs_version: '10'
17+
- nodejs_version: '6'
2018
webpack_version: latest
2119
- nodejs_version: '8'
2220
webpack_version: latest
23-
- nodejs_version: '6'
21+
- nodejs_version: '10'
22+
webpack_version: latest
23+
- nodejs_version: '11'
2424
webpack_version: latest
2525

2626
matrix:

lib/fs.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,17 @@ module.exports = {
6969
}
7070

7171
let fileSystem;
72+
7273
// store our files in memory
7374
const isConfiguredFs = context.options.fs;
7475
const isMemoryFs = !isConfiguredFs
7576
&& !compiler.compilers
7677
&& compiler.outputFileSystem instanceof MemoryFileSystem;
7778

7879
if (isConfiguredFs) {
80+
// eslint-disable-next-line no-shadow
7981
const { fs } = context.options;
82+
8083
if (typeof fs.join !== 'function') {
8184
// very shallow check
8285
throw new Error('Invalid options: options.fs.join() method is expected');

0 commit comments

Comments
 (0)