From bbb60e23e2b8590a6e0d9b5ab53bfff26f0d2758 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Wed, 27 Nov 2019 13:04:08 -0800 Subject: [PATCH] chore: Fix Node engines version to current LTS (10) --- lerna.json | 3 +-- package.json | 2 +- packages/adapter-commons/package.json | 2 +- packages/adapter-tests/package.json | 2 +- packages/authentication-client/package.json | 2 +- packages/authentication-local/package.json | 2 +- packages/authentication-oauth/package.json | 2 +- packages/authentication/package.json | 2 +- packages/client/package.json | 2 +- packages/commons/package.json | 2 +- packages/configuration/package.json | 2 +- packages/errors/package.json | 2 +- packages/express/package.json | 2 +- packages/feathers/package.json | 2 +- packages/primus/package.json | 2 +- packages/rest-client/package.json | 2 +- packages/socketio-client/package.json | 2 +- packages/socketio/package.json | 2 +- packages/tests/package.json | 2 +- packages/transport-commons/package.json | 2 +- 20 files changed, 20 insertions(+), 21 deletions(-) diff --git a/lerna.json b/lerna.json index 7074634d2f..dc5f85cd12 100644 --- a/lerna.json +++ b/lerna.json @@ -22,7 +22,6 @@ "**/yarn.lock", "**/test/**", "lerna.json", - "readme.md", - "package.json" + "readme.md" ] } diff --git a/package.json b/package.json index 5288690f90..5a9f65e3ea 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "install": "lerna bootstrap", diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 56b60fcafa..2fcd0654dd 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -25,7 +25,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "main": "lib/", "types": "lib/", diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 7a406d98dd..c54348b5f3 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -25,7 +25,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "main": "lib/index.js", "scripts": { diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index a960ab69be..78ee58804c 100644 --- a/packages/authentication-client/package.json +++ b/packages/authentication-client/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile", diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index f059b628cf..803e6a7684 100644 --- a/packages/authentication-local/package.json +++ b/packages/authentication-local/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile", diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index e32d5415cd..be4f756c10 100644 --- a/packages/authentication-oauth/package.json +++ b/packages/authentication-oauth/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "start": "ts-node test/app", diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 9b93c24c09..dc39990d58 100644 --- a/packages/authentication/package.json +++ b/packages/authentication/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile", diff --git a/packages/client/package.json b/packages/client/package.json index 7921f53ba4..cfd291b359 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -21,7 +21,7 @@ ], "author": "Feathers contributors", "engines": { - "node": ">= 12" + "node": ">= 10" }, "main": "index.js", "types": "index.d.ts", diff --git a/packages/commons/package.json b/packages/commons/package.json index e00bb2909d..55316ea01c 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -25,7 +25,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "main": "lib/", "types": "lib/", diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 89f5f1f29c..e88399e710 100644 --- a/packages/configuration/package.json +++ b/packages/configuration/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile", diff --git a/packages/errors/package.json b/packages/errors/package.json index 9fbfa2d9fa..1781436ecd 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -24,7 +24,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "directories": { "lib": "lib" diff --git a/packages/express/package.json b/packages/express/package.json index 67caf9b2d5..7a15a2702b 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "test": "mocha --opts ../../mocha.opts" diff --git a/packages/feathers/package.json b/packages/feathers/package.json index a49060f1ed..f14ec47ef9 100644 --- a/packages/feathers/package.json +++ b/packages/feathers/package.json @@ -39,7 +39,7 @@ "publish": "npm run reset-version" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "publishConfig": { "access": "public" diff --git a/packages/primus/package.json b/packages/primus/package.json index 6adb0dd47c..0cbe091b2a 100644 --- a/packages/primus/package.json +++ b/packages/primus/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "test": "mocha --opts ../../mocha.opts" diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 0b80b5d9ad..ad294d1cb3 100644 --- a/packages/rest-client/package.json +++ b/packages/rest-client/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "test": "mocha --opts ../../mocha.opts" diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 6cdc234b63..9075d5de0e 100644 --- a/packages/socketio-client/package.json +++ b/packages/socketio-client/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "test": "mocha --opts ../../mocha.opts" diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 8b0f9381cd..d310623f5c 100644 --- a/packages/socketio/package.json +++ b/packages/socketio/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "test": "mocha --opts ../../mocha.opts" diff --git a/packages/tests/package.json b/packages/tests/package.json index af1818a3b2..98893fc314 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -27,7 +27,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile", diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index c2377a6b6a..dcd9c34ba2 100644 --- a/packages/transport-commons/package.json +++ b/packages/transport-commons/package.json @@ -28,7 +28,7 @@ "url": "https://github.com/feathersjs/feathers/issues" }, "engines": { - "node": ">= 12" + "node": ">= 10" }, "scripts": { "prepublish": "npm run compile",