mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 20:50:09 +00:00
7cdb87eb19
Summary: This pull request replaces the use of mkdirp with Node.js's built-in fs.mkdirSync({ recursive: true }) function, which is available in Node.js version 10.12.0 and above. This change reduces the number of external dependencies and simplifies the codebase by using the native capabilities of Node.js. The motivation behind this change is to remove the unnecessary mkdirp dependency, as Node.js natively supports recursive directory creation since version 10.12.0. This streamlines the code and reduces the reliance on external libraries. ## Changelog: [INTERNAL] [REMOVED] - Replaced mkdirp with fs.mkdirSync({ recursive: true }) in build scripts and codegen. Requires Node.js 10.12.0 and above. Pull Request resolved: https://github.com/facebook/react-native/pull/46388 Test Plan: I ran the build and codegen scripts locally with Node.js version 10.12.0 and above after replacing mkdirp, ensuring the scripts work as expected. No issues were encountered, and all processes, including directory creation and file handling, function correctly. Reviewed By: cortinico Differential Revision: D62852488 Pulled By: huntie fbshipit-source-id: 76f44102a80b499521c156308d276a17d279ce38 |
||
---|---|---|
.. | ||
oss | ||
build.js |