From 5781854b3381338bb38c1779685720b31a1e3ba6 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Fri, 17 Jun 2016 01:58:15 +0300 Subject: [PATCH] Add support for Node.js 6 Add support for Node.js 6 by: * Updating references of our forked modules. In each of the new tags there are prebuilt binaries for Node.js 6.x.x. The binaries are prebuilt for Mac OS X (x64), Windows (x64 and x86) and Linux (x64 and x86). * Updating reference to ios-sim-portable to the latest version where the binaries for Node.js 6.x.x are included. * Updating npm dependency to it's latest 2.x.x version in order to prevent the error: `(node:13828) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent vers ion.` (it's been shown on every command with Node.js 6.x.x and the old version of npm). * Update some of the dev-dependencies in order to clean the usage of graceful-fs module. --- package.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/package.json b/package.json index c6608ecb47..40ef9d8894 100644 --- a/package.json +++ b/package.json @@ -32,21 +32,21 @@ "broccoli": "0.16.4", "broccoli-funnel": "0.2.3", "bufferpack": "0.0.6", - "bufferutil": "https://github.com/telerik/bufferutil/tarball/v1.0.1.1", + "bufferutil": "https://github.com/telerik/bufferutil/tarball/v1.0.1.2", "byline": "4.2.1", "chalk": "1.1.0", "cli-table": "https://github.com/telerik/cli-table/tarball/v0.3.1.2", "clui": "0.3.1", "colors": "1.1.2", "esprima": "2.7.0", - "ffi": "https://github.com/icenium/node-ffi/tarball/v2.0.0.1", - "fibers": "https://github.com/icenium/node-fibers/tarball/v1.0.6.3", + "ffi": "https://github.com/icenium/node-ffi/tarball/v2.0.0.2", + "fibers": "https://github.com/icenium/node-fibers/tarball/v1.0.13.0", "filesize": "3.1.2", - "gaze": "0.5.2", + "gaze": "1.0.0", "glob": "^7.0.3", "iconv-lite": "0.4.11", "inquirer": "0.9.0", - "ios-sim-portable": "~1.0.20", + "ios-sim-portable": "~1.0.24", "lockfile": "1.0.1", "lodash": "3.10.0", "log4js": "0.6.26", @@ -58,7 +58,7 @@ "mute-stream": "0.0.5", "node-inspector": "https://github.com/NativeScript/node-inspector/tarball/v0.7.4.1", "node-uuid": "1.4.3", - "npm": "2.14.12", + "npm": "2.15.6", "open": "0.0.5", "osenv": "0.1.3", "plist": "1.1.0", @@ -66,13 +66,13 @@ "plistlib": "0.2.1", "progress-stream": "1.1.1", "properties-parser": "0.2.3", - "ref": "https://github.com/icenium/ref/tarball/v1.1.3.1", - "ref-struct": "https://github.com/telerik/ref-struct/tarball/v1.0.2.1", + "ref": "https://github.com/icenium/ref/tarball/v1.3.2.0", + "ref-struct": "https://github.com/telerik/ref-struct/tarball/v1.0.2.2", "semver": "5.0.1", "shelljs": "0.5.3", "tabtab": "https://github.com/Icenium/node-tabtab/tarball/master", "temp": "0.8.3", - "utf-8-validate": "https://github.com/telerik/utf-8-validate/tarball/v1.0.1.1", + "utf-8-validate": "https://github.com/telerik/utf-8-validate/tarball/v1.0.1.2", "winreg": "0.0.17", "ws": "0.7.1", "xcode": "https://github.com/NativeScript/node-xcode/archive/1.4.0.tar.gz", @@ -83,23 +83,23 @@ "analyze": true, "devDependencies": { "chai": "1.8.x", - "grunt": "0.4.5", - "grunt-contrib-clean": "0.6.0", - "grunt-contrib-copy": "0.8.0", - "grunt-contrib-watch": "0.6.1", - "grunt-shell": "1.1.2", - "grunt-ts": "4.2.0", - "grunt-tslint": "3.0.1", + "grunt": "1.0.1", + "grunt-contrib-clean": "1.0.0", + "grunt-contrib-copy": "1.0.0", + "grunt-contrib-watch": "1.0.0", + "grunt-shell": "1.3.0", + "grunt-ts": "5.5.1", + "grunt-tslint": "3.1.0", "istanbul": "0.3.19", "mocha": "2.5.3", "mocha-fibers": "https://github.com/NativeScript/mocha-fibers.git", "mocha-typescript": "1.0.3", "should": "7.0.2", - "tslint": "3.2.1", + "tslint": "3.11.0", "typescript": "^1.8.10" }, "license": "Apache-2.0", "engines": { - "node": ">=0.10.40 <0.11.0 || >=0.12.7 <0.13.0 || >=4.2.1 <5.0.0 || >=5.1.0 <6.0.0" + "node": ">=0.10.40 <0.11.0 || >=0.12.7 <0.13.0 || >=4.2.1 <5.0.0 || >=5.1.0 <7.0.0" } }