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.
1 parent 8a1675a commit bbca408Copy full SHA for bbca408
packages/gyp-to-cmake/src/cli.ts
@@ -28,7 +28,7 @@ export function generateProjectName(gypPath: string) {
28
return name
29
.replace(/^@/g, "")
30
.replace(/\//g, "--")
31
- .replace(/[^a-zA-Z0-9_]/g, "_");
+ .replace(/[^a-zA-Z0-9_-]/g, "_");
32
}
33
34
export function transformBindingGypFile(
0 commit comments