Update fs-extra in packages/create-react-kotlin-app from 1.0.0 to 4.0.0 #10
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dependencies.io has updated
fs-extra
(a npm dependency inpackages/create-react-kotlin-app
) from "1.0.0" to "4.0.0".4.0.0
Changed
fs.read()
&fs.write()
now return objects. See the docs for details. #436, #449fs.move()
now errors out when destination is a subdirectory of source. #458rimraf
tofs.remove()
&fs.removeSync()
. #459Fixed
fs.outputJSONSync()
working again; it was broken due to refactoring. #428Also clarified the docs in a few places.
3.0.0
Added
pathExists()
, a replacement for the deprecatedfs.exists
.pathExists
has a normal error-first callback signature. Also addedpathExistsSync
, an alias tofs.existsSync
, for completeness. #406Removed
writeJson()
,writeJsonSync()
,outputJson()
, &outputJsonSync()
. This was undocumented. #402Changed
throws
option forreadJsonSync()
; now does not throw filesystem errors whenthrows
isfalse
.writeJson()
,writeJsonSync()
,outputJson()
, &outputJsonSync()
now output minified JSON by default for consistency withJSON.stringify()
; set thespaces
option to2
to override this new behavior. #402Buffer.allocUnsafe()
instead ofnew Buffer()
in environments that support it. #394Fixed
removeSync()
silently failed on Windows in some cases. Now throws anEBUSY
error. #4082.0.0
Removed
v0.12
. The Node foundation stopped officially supporting iton Jan 1st, 2017.
walk()
andwalkSync()
.walkSync()
was only part offs-extra
for a littleover two months. Use klaw instead of
walk()
, in fact,walk()
was justan alias to klaw. For
walkSync()
use klaw-sync. See: [Support multiple source paths. #338], [Update core-js requirement from ^3.2.1 to ^3.4.0 #339]Changed
clobber
tooverwrite
. This affectscopy()
,copySync()
, andmove()
. [Update lerna requirement from ^3.16.4 to ^3.18.3 #330], [Translate README into Korean. #333]docs/
. [Update lerna requirement from ^3.16.4 to ^3.18.4 #340]Fixed
copySync()
like incopy()
. [Bump core-js from 3.3.2 to 3.3.2 #324]copy()
can fail. [Bump fsevents from 2.1.1 to 2.1.1 #326]