We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
prebuilds
prebuild
1 parent 0846fcf commit be58147Copy full SHA for be58147
.gitignore
@@ -8,7 +8,7 @@
8
# node-gyp
9
/build
10
# prebuildify
11
-/prebuild
+/prebuilds
12
13
# Logs
14
logs
scripts/prebuild.mjs
@@ -133,7 +133,7 @@ async function main(argv = process.argv) {
133
});
134
135
const buildsPath = path.join(projectPath, 'build', 'Release');
136
- const prebuildsPath = path.join(projectPath, 'prebuild');
+ const prebuildsPath = path.join(projectPath, 'prebuilds');
137
138
const buildNames = await fs.promises.readdir(buildsPath);
139
const buildName = buildNames.find((filename) => /\.node$/.test(filename));
0 commit comments