From 7ac6e21801cad39d28e9e6afdae5249af78cd002 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Fri, 24 Jan 2020 22:45:36 +0100 Subject: [PATCH] gyp: fix gypfile name in index.js Refs: https://github.com/nodejs/node-addon-api/pull/643 PR-URL: https://github.com/nodejs/node-addon-api/pull/658 Reviewed-By: Nicola Del Gobbo Reviewed-By: Gabriel Schulhof Reviewed-By: Michael Dawson --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 402858dfc..393fa348e 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const path = require('path'); module.exports = { include: `"${__dirname}"`, - gyp: path.join(__dirname, 'nothing.gyp:nothing'), + gyp: path.join(__dirname, 'node_api.gyp:nothing'), isNodeApiBuiltin: true, needsFlag: false };