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 42ab6df commit fe9cd09Copy full SHA for fe9cd09
scripts/src/gulpfile.js
@@ -17,7 +17,7 @@ function ReplaceVersionInVersionFile() {
17
let DTVersionArr = argv.newVersion.split(".");
18
DTVersionArr.splice(2);
19
return src(["../../microsoft-graph.d.ts"])
20
- .pipe(replace(/Type definitions for non-npm package microsoft-graph <VERSION_STRING>/g, `Type definitions for non-npm package microsoft-graph ${DTVersionArr.join(".")}`))
+ .pipe(replace(/Type definitions for non-npm package microsoft-graph .+/g, `Type definitions for non-npm package microsoft-graph ${DTVersionArr.join(".")}`))
21
.pipe(dest("../../"));
22
}
23
0 commit comments