feat: fsIsCaseSensitive is false by default

BREAKING CHANGE:

treat all file systems as case insensitive by default
This commit is contained in:
Zoltan Kochan
2019-10-03 23:22:04 +03:00
parent a8223b3784
commit 3c8763c8f1

View File

@@ -45,7 +45,7 @@ export default function (
cert: opts.cert,
fsIsCaseSensitive: typeof opts.fsIsCaseSensitive === 'boolean'
? opts.fsIsCaseSensitive
: true, // TODO: change the default value to false
: false,
key: opts.key,
localAddress: opts.localAddress,
proxy: opts.httpsProxy || opts.proxy,