We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6001520 commit 4d5542eCopy full SHA for 4d5542e
src/utils/parse-package-json/get-export-entries.ts
@@ -206,7 +206,7 @@ export const parseCliInputFlag = (distPath: string): ExportEntry => {
206
if (distPath.includes('=')) {
207
const [type, filePath] = distPath.split('=');
208
distPath = filePath;
209
- isExecutable = type === 'binary';
+ isExecutable = type === 'bin' || type === 'binary';
210
}
211
return {
212
outputPath: normalizePath(distPath),
0 commit comments