-
Notifications
You must be signed in to change notification settings - Fork 239
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
Task: extract and create npm package #6172
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: Vincent Biret <[email protected]>
…ules Add flag to be able to apply kiota validation rules on getKiotaTree
…-tests getKiotaTree integration tests and fix mappings RPC-package
Export additional interfaces
…deloading Sideloading env variable to copy kiota zip from
public bool? IncludeKiotaValidationRules | ||
{ | ||
get; set; | ||
} |
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.
we don't need this, just pass "all" to DisableedValidationRules
@@ -52,7 +58,14 @@ export async function ensureKiotaIsPresent() { | |||
} | |||
fs.mkdirSync(installPath, { recursive: true }); | |||
const zipFilePath = `${installPath}.zip`; | |||
await downloadFileFromUrl(getDownloadUrl(currentPlatform), zipFilePath); | |||
// If env variable that points to kiota binary zip exists, use it to copy the file instead of downloading it | |||
const kiotaBinaryZip = process.env.SIDELOADING_KIOTA_BINARY_ZIP_PATH; |
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.
the environment variable should start with KIOTA_ to be consistent with the other environment variables
"@types/adm-zip": "^0.5.7", | ||
"@types/jest": "^29.5.14", | ||
"cpx": "^1.5.0", | ||
"glob": "^11.0.1", |
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.
isn't glob a runtime dependency?
working-directory: vscode/microsoft-kiota | ||
run: | | ||
npm install | ||
npm list |
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.
why an npm list here?
Overview
Closes
Closes #6098
Closes #6299
Closes #6302
Closes #6304
Closes #6346
Folder Visualisation
vscode
├── microsoft-kiota/
├── npm-package/
│ ├── lib/
│ │ ├── generateClient.ts
│ │ ├── generatePlugin.ts
│ │ └── ...
│ ├── tests/
│ │ ├── generateClient.spec.ts
│ │ └── ...
│ ├── connect.ts
│ ├── install.ts
│ ├── ...
│ ├── runtime.json
│ ├── readme.md
│ └── index.ts
├── node_modules/
├── ...
├── lerna.json
└── package.json
Testing the npm package
.tgz
filemicrosoft-kiota-1.0.0.tgz
.cd vscode/npm-package npm pack
Initialize a new Node.js project. The default is (commonjs), but you can change it later to ES6 modules by setting
"module": "ES6"
in yourtsconfig.json
file and reinstall the kiota npm packageindex.ts
at the root of the project and add the following code:index.ts
file into JavaScript and run the compiled code:The expected result is:
Hello, World! 1.23.0
Changing the download location
To change the default location of the downloaded binaries, update the import command to include the configuration.
You should expect the same results and also see the binaries in the folder you selected