Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
377 B
JavaScript
Executable File
13 lines
377 B
JavaScript
Executable File
const path = require('path');
|
|
|
|
const includeDir = path.relative('.', __dirname);
|
|
|
|
module.exports = {
|
|
include: `"${__dirname}"`, // deprecated, can be removed as part of 4.0.0
|
|
include_dir: includeDir,
|
|
gyp: path.join(includeDir, 'node_api.gyp:nothing'), // deprecated.
|
|
targets: path.join(includeDir, 'node_addon_api.gyp'),
|
|
isNodeApiBuiltin: true,
|
|
needsFlag: false
|
|
};
|