-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change gulpfile to TypeScript, update SwaggerToSDK generator version #5
Conversation
gulpfile.ts
Outdated
return readmeTypeScriptMdFileContents.match(/output-folder: (\S*)/)[1]; | ||
} | ||
|
||
function npmInstall(packageFolderPath) { | ||
execSync(`npm install`, { cwd: packageFolderPath, stdio: ['ignore', 'ignore', 'pipe'] }); | ||
function npmInstall(packageFolderPath: string): any { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this return type used now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. I added it just so that npmInstall() behaved a little more like execSync(), but since I wasn't using it I'll just make it void.
Change gulpfile to TypeScript, update SwaggerToSDK generator version
Initial PR for Azure SB over amqp
renamed methods and added IotHubConnectionConfig
fixing moment dependency strictly to 2.18.1
Rename bodyAsJson to parsedBody
[Event Hubs] Improve docs based on ux study
Update autorest.typescript.csproj
Add initial model transforms
No description provided.