Skip to content

Commit

Permalink
Merge pull request #1 from electron/felixr-node-12
Browse files Browse the repository at this point in the history
Lower required Node version to >=12.13.0
  • Loading branch information
felixrieseberg authored Sep 18, 2024
2 parents e6f4ede + 5e880a4 commit d16a6c6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/log.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "node-gyp",
"name": "@electron/node-gyp",
"description": "Node.js native addon build tool",
"license": "MIT",
"keywords": [
Expand All @@ -11,7 +11,7 @@
"bindings",
"gyp"
],
"version": "10.2.0",
"version": "10.2.0-electron",
"installVersion": 11,
"author": "Nathan Rajlich <[email protected]> (http://tootallnate.net)",
"repository": {
Expand All @@ -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",
Expand Down

0 comments on commit d16a6c6

Please sign in to comment.