-
Notifications
You must be signed in to change notification settings - Fork 67
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
Update kudu package to new azure sdk for js #777
Conversation
"author": "Microsoft Corporation", | ||
"version": "0.1.9", | ||
"description": "Client used to interact with Kudu.", | ||
"tags": [ |
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.
Any reason to remove these tags?
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.
This change was related to the auto-generation, not intentional. In any case, the main goal of this package is for our own use, so tags don't really matter
@@ -0,0 +1,37 @@ | |||
import rollup from "rollup"; |
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.
Does this need a license at the top too?
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.
I'm not worried about it. This file was generated with autorest, and the main sdk repo doesn't seem to add it to their files either - for example: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/appservice/arm-appservice/rollup.config.js
"moduleResolution": "node", | ||
"strict": true, | ||
"target": "es5", |
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.
Should the target have changed especially since the module is es6?
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.
This file was generated by autorest, so I'd rather just trust them to pick this stuff
This PR is actually way fewer files than it seems because almost all of it is auto-generated by autorest (including all the ts files, tsconfig.json, rollup.config.js, and even parts of package.json). The main files we will ever edit are "autorestconfig.json" and "swagger.json"
Related to #510