We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 735d9d8 commit 25163d2Copy full SHA for 25163d2
.gitignore
@@ -7,7 +7,7 @@
7
/builds
8
# node-gyp
9
/build
10
-/prebuilds
+/prebuild
11
/prepublishOnly
12
13
# Logs
scripts/prebuild.mjs
@@ -135,7 +135,7 @@ async function main(argv = process.argv) {
135
});
136
137
const buildsPath = path.join(projectPath, 'build', 'Release');
138
- const prebuildsPath = path.join(projectPath, 'prebuilds');
+ const prebuildsPath = path.join(projectPath, 'prebuild');
139
140
const buildNames = await fs.promises.readdir(buildsPath);
141
const buildName = buildNames.find((filename) => /\.node$/.test(filename));
0 commit comments