-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathieu Gamache
committed
Jun 4, 2024
1 parent
ed79a38
commit 68a58da
Showing
6 changed files
with
74 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
# wl-openapi-typescript | ||
|
||
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](./LICENSE) | ||
[![CI](https://github.com/gsoft-inc/wl-openapi-typescript/actions/workflows/ci.yml/badge.svg)](https://github.com/gsoft-inc/wl-openapi-typescript/actions/workflows/ci.yml) | ||
|
||
- pnpm dlx @workleap/create-schemas | ||
- pnpm create create-schemas??? | ||
- dev dependencies | ||
Tools to generate TypeScript schemas from OpenAPI. | ||
|
||
## Packages | ||
|
||
| Package | Version | | ||
|-------------------------| ---------------------------------------------------------------------------------------------------------------------------------------------| | ||
| [@workleap/create-schemas](https://www.npmjs.org/package/@workleap/create-schemas)| [![NPM Version](http://img.shields.io/npm/v/@workleap/create-schemas.svg?style=flat)](https://www.npmjs.org/package/@workleap/create-schemas) | | ||
|
||
|
||
## Usages | ||
|
||
Add a script in package.json to call `@workleap/create-schemas` | ||
|
||
```json | ||
"scripts": { | ||
"generate-schemas": "pnpm dlx @workleap/create-schemas arg1 arg2", | ||
} | ||
``` | ||
|
||
## 🤝 Contributing | ||
|
||
View the [contributor's documentation](./CONTRIBUTING.md). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "debug", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"run-with-download": "pnpm dlx @workleap/create-schemas arg1 arg2", | ||
"run-from-dev-dep1": "pnpm @workleap/create-schemas arg1 arg2", | ||
"run-from-dev-dep2": "create-schemas arg1 arg2" | ||
}, | ||
"devDependencies": { | ||
"@workleap/create-schemas": "0.0.1-preview.0" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters