You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by no...@apache.org on 2020/10/06 13:12:14 UTC

[cordova-android] branch master updated: fix: Reflect minimum required NodeJS (#1045)

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

normanbreau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git


The following commit(s) were added to refs/heads/master by this push:
     new 39e3156  fix: Reflect minimum required NodeJS (#1045)
39e3156 is described below

commit 39e315628ef4a3eecf74384a0e6edefcfb4dab2e
Author: Norman Breau <no...@normanbreau.com>
AuthorDate: Tue Oct 6 10:12:04 2020 -0300

    fix: Reflect minimum required NodeJS (#1045)
    
    Project uses APIs only added in 10.10, namely ProjectBuilder.js readdirSync(), with `withFileTypes` option.
    https://nodejs.org/api/fs.html#fs_fs_readdirsync_path_options
---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index b38ef78..eace6e1 100644
--- a/package.json
+++ b/package.json
@@ -43,7 +43,7 @@
     "rewire": "^5.0.0"
   },
   "engines": {
-    "node": ">=10.0.0"
+    "node": ">=10.10.0"
   },
   "nyc": {
     "include": [


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org