mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #8634 from hwillson/issue-8630
Upgrade Node to 4.8.2 and related core npm packages.
This commit is contained in:
@@ -4,6 +4,13 @@
|
||||
the `reify` npm package has been upgraded to version 0.7.4, fixing
|
||||
[issue #8595](https://github.com/meteor/meteor/issues/8595).
|
||||
|
||||
* Node has been upgraded to version 4.8.2.
|
||||
|
||||
* The `npm` npm package has been upgraded to version 4.5.0.
|
||||
Note that when using npm `scripts` there has been a change regarding
|
||||
what happens when `SIGINT` (Ctrl-C) is received. Read more
|
||||
[here](https://github.com/npm/npm/releases/tag/v4.5.0).
|
||||
|
||||
## v1.4.4.1, 2017-04-07
|
||||
|
||||
* A change in Meteor 1.4.4 to remove "garbage" directories asynchronously
|
||||
|
||||
2
meteor
2
meteor
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
BUNDLE_VERSION=4.7.25
|
||||
BUNDLE_VERSION=4.7.26
|
||||
|
||||
# OS Check. Put here because here is where we download the precompiled
|
||||
# bundles that are arch specific.
|
||||
|
||||
@@ -6,8 +6,8 @@ set -u
|
||||
UNAME=$(uname)
|
||||
ARCH=$(uname -m)
|
||||
MONGO_VERSION=3.2.12
|
||||
NODE_VERSION=4.8.1
|
||||
NPM_VERSION=4.4.4
|
||||
NODE_VERSION=4.8.2
|
||||
NPM_VERSION=4.5.0
|
||||
|
||||
if [ "$UNAME" == "Linux" ] ; then
|
||||
if [ "$ARCH" != "i686" -a "$ARCH" != "x86_64" ] ; then
|
||||
|
||||
@@ -11,7 +11,7 @@ var packageJson = {
|
||||
dependencies: {
|
||||
// Explicit dependency because we are replacing it with a bundled version
|
||||
// and we want to make sure there are no dependencies on a higher version
|
||||
npm: "4.4.4",
|
||||
npm: "4.5.0",
|
||||
"node-gyp": "3.6.0",
|
||||
"node-pre-gyp": "0.6.34",
|
||||
"meteor-babel": "0.20.1",
|
||||
@@ -33,8 +33,8 @@ var packageJson = {
|
||||
tar: "2.2.1",
|
||||
kexec: "2.0.2",
|
||||
"source-map": "0.5.3",
|
||||
"node-inspector": "0.12.8",
|
||||
"v8-profiler": "5.6.5",
|
||||
"node-inspector": "1.1.1",
|
||||
"v8-profiler": "5.7.0",
|
||||
chalk: "0.5.1",
|
||||
sqlite3: "3.1.3",
|
||||
netroute: "1.0.2",
|
||||
|
||||
Reference in New Issue
Block a user