Bumps [@azure-tools/typespec-client-generator-cli](https://github.com/Azure/azure-sdk-tools) from 0.28.1 to 0.28.3. - [Release notes](https://github.com/Azure/azure-sdk-tools/releases) - [Commits](https://github.com/Azure/azure-sdk-tools/commits) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
TypeSpec Client Generator CLI
This directory contains npm package definitions for @azure-tools/typespec-client-generator-cli (tsp-client) with pinned versions to ensure reproducible builds across environments.
Files
package.json- npm package definition with pinned tsp-client versionpackage-lock.json- Lock file ensuring exact dependency versions
Prerequisites
- Node.js (with npm) - Required to install and run tsp-client
Installation
Install dependencies
# Navigate to this directory
cd eng/common/tsp-client
# Install dependencies
npm ci
Usage
After installation, you can run tsp-client by navigating to the directory and using npm exec:
cd eng/common/tsp-client
# Get help
npm exec --no -- tsp-client --help
# Check version
npm exec --no -- tsp-client version
# Generate client code
npm exec --no -- tsp-client generate --output-dir ./generated
# Initialize a new project
npm exec --no -- tsp-client init --tsp-config ./tspconfig.yaml
CI/CD Best Practices
cd eng/common/tsp-client
npm ci
npm exec --no -- tsp-client init --update-if-exists --tsp-config https://github.com/Azure/azure-rest-api-specs/blob/dee71463cbde1d416c47cf544e34f7966a94ddcb/specification/contosowidgetmanager/Contoso.WidgetManager/tspconfig.yaml
Package Management
Automatic Updates via Dependabot
Dependabot is configured to automatically check for updates to @azure-tools/typespec-client-generator-cli daily and create pull requests with updated package.json and package-lock.json files. This ensures the package stays current with the latest versions while maintaining security through the PR review process.
Manual Version Updates
If you need to manually update the tsp-client version:
-
Edit
package.jsonto update the version:{ "dependencies": { "@azure-tools/typespec-client-generator-cli": "0.28.1" } } -
Update the lock file:
npm install -
Commit both
package.jsonandpackage-lock.json