mirror of https://github.com/grpc/grpc-node.git
Merge pull request #77 from murgatroid99/v1.7.1_changes
Update to 1.7.1, add Node 9 support, fix generated file permissions
This commit is contained in:
commit
a87f41f8fa
|
|
@ -1 +1 @@
|
||||||
Subproject commit ed9929e2465f3a93d81ae45fa48ed2a82d63e831
|
Subproject commit 279af9113481890bcc2c554c5d723c0b3c47f707
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "grpc",
|
"name": "grpc",
|
||||||
"version": "1.7.0",
|
"version": "1.7.1",
|
||||||
"author": "Google Inc.",
|
"author": "Google Inc.",
|
||||||
"description": "gRPC Library for Node",
|
"description": "gRPC Library for Node",
|
||||||
"homepage": "https://grpc.io/",
|
"homepage": "https://grpc.io/",
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"arguejs": "^0.2.3",
|
"arguejs": "^0.2.3",
|
||||||
"lodash": "^4.15.0",
|
"lodash": "^4.15.0",
|
||||||
"nan": "^2.0.0",
|
"nan": "^2.0.0",
|
||||||
"node-pre-gyp": "^0.6.35",
|
"node-pre-gyp": "^0.6.39",
|
||||||
"protobufjs": "^5.0.0"
|
"protobufjs": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"arguejs": "^0.2.3",
|
"arguejs": "^0.2.3",
|
||||||
"lodash": "^4.15.0",
|
"lodash": "^4.15.0",
|
||||||
"nan": "^2.0.0",
|
"nan": "^2.0.0",
|
||||||
"node-pre-gyp": "^0.6.35",
|
"node-pre-gyp": "^0.6.39",
|
||||||
"protobufjs": "^5.0.0"
|
"protobufjs": "^5.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
@rem See the License for the specific language governing permissions and
|
@rem See the License for the specific language governing permissions and
|
||||||
@rem limitations under the License.
|
@rem limitations under the License.
|
||||||
|
|
||||||
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0
|
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0
|
||||||
|
|
||||||
set electron_versions=1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0
|
set electron_versions=1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,8 @@ source ~/.nvm/nvm.sh
|
||||||
nvm use 8
|
nvm use 8
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
|
umask 022
|
||||||
|
|
||||||
cd $(dirname $0)/../../..
|
cd $(dirname $0)/../../..
|
||||||
|
|
||||||
rm -rf build || true
|
rm -rf build || true
|
||||||
|
|
@ -28,7 +30,7 @@ mkdir -p "${ARTIFACTS_OUT}"
|
||||||
|
|
||||||
npm update
|
npm update
|
||||||
|
|
||||||
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 )
|
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0 )
|
||||||
|
|
||||||
electron_versions=( 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 )
|
electron_versions=( 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 )
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue