mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Fix node/no-unsupported-features/node-builtins issues (#9684)
Refs #9663 See [`node/no-unsupported-features/node-builtins`][1] for more information. This change enables `node/no-unsupported-features/node-builtins` and fixes the issue raised by the rule. The `engines.node` version is updated to reflect the version specified by the `.nvmrc` file and the version used by CircleCI: ```bash $ cat .nvmrc v10.18.1 ``` ```bash $ docker run --rm -it circleci/node@sha256:e16740707de2ebed45c05d507f33ef204902349c7356d720610b5ec6a35d3d88 node --version v10.18.1 ```
This commit is contained in:
parent
8c87c46601
commit
10227266f9
@ -92,7 +92,6 @@ module.exports = {
|
|||||||
'node/no-sync': 'off',
|
'node/no-sync': 'off',
|
||||||
'node/no-unpublished-import': 'off',
|
'node/no-unpublished-import': 'off',
|
||||||
'node/no-unpublished-require': 'off',
|
'node/no-unpublished-require': 'off',
|
||||||
'node/no-unsupported-features/node-builtins': 'off',
|
|
||||||
'mocha/max-top-level-suites': 'off',
|
'mocha/max-top-level-suites': 'off',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -289,7 +289,7 @@
|
|||||||
"webpack": "^4.41.6"
|
"webpack": "^4.41.6"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^10.16.0",
|
"node": "^10.18.1",
|
||||||
"yarn": "^1.16.0"
|
"yarn": "^1.16.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user