mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'devel' into release-1.5
This commit is contained in:
@@ -9,6 +9,14 @@
|
||||
information about how dynamic `import(...)` works in Meteor, and how to
|
||||
use it in your applications.
|
||||
|
||||
## v1.4.4.1, 2017-04-07
|
||||
|
||||
* A change in Meteor 1.4.4 to remove "garbage" directories asynchronously
|
||||
in `files.renameDirAlmostAtomically` had unintended consequences for
|
||||
rebuilding some npm packages, so that change was reverted, and those
|
||||
directories are now removed before `files.renameDirAlmostAtomically`
|
||||
returns. [PR #8574](https://github.com/meteor/meteor/pull/8574)
|
||||
|
||||
## v1.4.4, 2017-04-07
|
||||
|
||||
* Node has been upgraded to version 4.8.1.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "1.4.4",
|
||||
"version": "1.4.4.1",
|
||||
"recommended": false,
|
||||
"official": true,
|
||||
"description": "The Official Meteor Distribution"
|
||||
|
||||
@@ -1038,7 +1038,7 @@ files.renameDirAlmostAtomically =
|
||||
// ... and take out the trash.
|
||||
if (cleanupGarbage) {
|
||||
// We don't care about how long this takes, so we'll let it go async.
|
||||
files.rm_recursive_async(garbageDir);
|
||||
files.rm_recursive(garbageDir);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user