Skip to content

Commit d4286d7

Browse files
authored
Merge pull request #775 from acacode/prepare-13.0.6
Prepare 13.0.6
2 parents eb2d9a4 + f7fab30 commit d4286d7

File tree

11 files changed

+1096
-84
lines changed

11 files changed

+1096
-84
lines changed

.env.example

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
/.yarn/*
22
!/.yarn/releases
3-
4-
/.idea/
5-
/.vscode/
6-
/dist/
73
/node_modules/
8-
9-
.env
10-
swagger-test-cli
11-
swagger-test-cli.*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1919
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2020
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2121
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swagger-typescript-api",
3-
"version": "13.0.5",
3+
"version": "13.0.6",
44
"description": "Generate TypeScript/JavaScript API from Swagger schema",
55
"homepage": "https://github.com/acacode/swagger-typescript-api",
66
"bugs": "https://github.com/acacode/swagger-typescript-api/issues",
@@ -53,9 +53,6 @@
5353
"@types/lodash": "4.17.5",
5454
"@types/node": "20.14.2",
5555
"axios": "1.7.2",
56-
"cross-env": "7.0.3",
57-
"dotenv": "16.4.5",
58-
"git-diff": "2.0.6",
5956
"shx": "0.3.4",
6057
"vitest": "1.6.0"
6158
},

templates/base/route-name.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ if (route === "/")
4040
return _.camelCase(`${_.lowerCase(method)}Root`);
4141
4242
return createCustomOperationId(method, route, moduleName);
43-
%>
43+
%>

templates/base/route-type.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ export namespace <%~ routeNamespace %> {
2020
export type RequestBody = <%~ (payload && payload.type) || 'never' %>;
2121
export type RequestHeaders = <%~ (headers && headers.type) || '{}' %>;
2222
export type ResponseBody = <%~ route.response.type %>;
23-
}
23+
}

0 commit comments

Comments
 (0)