You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by jo...@apache.org on 2020/01/16 13:13:59 UTC

[tinkerpop] 01/01: TINKERPOP-2329 JavaScript GLV: upgrade ws dependency

This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a commit to branch TINKERPOP-2329
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 4a1e9b99c51706f032a31592ed98a2ae2ec93c48
Author: Jorge Bay Gondra <jo...@gmail.com>
AuthorDate: Thu Jan 16 14:13:29 2020 +0100

    TINKERPOP-2329 JavaScript GLV: upgrade ws dependency
---
 gremlin-javascript/glv/PackageJson.template                  | 12 ++++++------
 .../src/main/javascript/gremlin-javascript/package.json      | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/gremlin-javascript/glv/PackageJson.template b/gremlin-javascript/glv/PackageJson.template
index 8bc2905..a40d3f7 100644
--- a/gremlin-javascript/glv/PackageJson.template
+++ b/gremlin-javascript/glv/PackageJson.template
@@ -33,15 +33,15 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "ws": "^3.0.0"
+    "ws": "^6.2.1"
   },
   "devDependencies": {
-    "mocha": "~4.0.1",
-    "cucumber": "~3.1.0",
     "chai": "~4.1.2",
+    "cucumber": "~4.2.1",
     "grunt": "~1.0.2",
     "grunt-cli": "~1.2.0",
-    "grunt-jsdoc": "~2.3.0"
+    "grunt-jsdoc": "~2.3.0",
+    "mocha": "~4.0.1"
   },
   "repository": {
     "type": "git",
@@ -52,9 +52,9 @@
     "url": "https://issues.apache.org/jira/browse/TINKERPOP"
   },
   "scripts": {
-    "test": "mocha test/unit test/integration -t 5000",
+    "test": "./node_modules/mocha/bin/mocha test/unit test/integration -t 5000",
     "features": "cucumber.js --require test/cucumber ../../../../../gremlin-test/features/",
-    "unit-test": "mocha test/unit"
+    "unit-test": "./node_modules/mocha/bin/mocha test/unit"
   },
   "engines": {
     "node": ">=6"
diff --git a/gremlin-javascript/src/main/javascript/gremlin-javascript/package.json b/gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
index 9aa5a2b..ff36cbd 100644
--- a/gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
+++ b/gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
@@ -14,15 +14,15 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "ws": "^3.0.0"
+    "ws": "^6.2.1"
   },
   "devDependencies": {
-    "mocha": "~4.0.1",
-    "cucumber": "~3.1.0",
     "chai": "~4.1.2",
+    "cucumber": "~4.2.1",
     "grunt": "~1.0.2",
     "grunt-cli": "~1.2.0",
-    "grunt-jsdoc": "~2.3.0"
+    "grunt-jsdoc": "~2.3.0",
+    "mocha": "~4.0.1"
   },
   "repository": {
     "type": "git",
@@ -33,9 +33,9 @@
     "url": "https://issues.apache.org/jira/browse/TINKERPOP"
   },
   "scripts": {
-    "test": "mocha test/unit test/integration -t 5000",
+    "test": "./node_modules/mocha/bin/mocha test/unit test/integration -t 5000",
     "features": "cucumber.js --require test/cucumber ../../../../../gremlin-test/features/",
-    "unit-test": "mocha test/unit"
+    "unit-test": "./node_modules/mocha/bin/mocha test/unit"
   },
   "engines": {
     "node": ">=6"