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 4eee307 commit d902debCopy full SHA for d902deb
.gitignore
@@ -8,7 +8,7 @@
8
# node-gyp
9
/build
10
# prebuildify
11
-/prebuilds
+/prebuild
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, 'prebuilds');
+ const prebuildsPath = path.join(projectPath, 'prebuild');
137
138
const buildNames = await fs.promises.readdir(buildsPath);
139
const buildName = buildNames.find((filename) => /\.node$/.test(filename));
0 commit comments