Lower required Node version to >=12.13.0

This commit is contained in:
Felix Rieseberg 2024-09-17 15:11:03 -07:00
parent e6f4ede10c
commit 5e880a4835
2 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
'use strict'
const { log } = require('proc-log')
const log = require('proc-log')
const { format } = require('util')
// helper to emit log messages with a predefined prefix

View file

@ -1,5 +1,5 @@
{
"name": "node-gyp",
"name": "@electron/node-gyp",
"description": "Node.js native addon build tool",
"license": "MIT",
"keywords": [
@ -11,7 +11,7 @@
"bindings",
"gyp"
],
"version": "10.2.0",
"version": "10.2.0-electron",
"installVersion": 11,
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
"repository": {
@ -24,17 +24,17 @@
"dependencies": {
"env-paths": "^2.2.0",
"exponential-backoff": "^3.1.1",
"glob": "^10.3.10",
"glob": "^8.1.0",
"graceful-fs": "^4.2.6",
"make-fetch-happen": "^13.0.0",
"nopt": "^7.0.0",
"proc-log": "^4.1.0",
"make-fetch-happen": "^10.2.1",
"nopt": "^6.0.0",
"proc-log": "^2.0.1",
"semver": "^7.3.5",
"tar": "^6.2.1",
"which": "^4.0.0"
"which": "^2.0.2"
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
"node": ">=12.13.0"
},
"devDependencies": {
"bindings": "^1.5.0",