Skip to content

Commit

Permalink
chore(release): v2.0.0-next.25
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot committed Oct 17, 2023
1 parent b6d65be commit fe1be03
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/modelina",
"version": "2.0.0-next.24",
"version": "2.0.0-next.25",
"description": "Library for generating data models based on inputs such as AsyncAPI, OpenAPI, or JSON Schema documents",
"license": "Apache-2.0",
"homepage": "https://www.modelina.org",
Expand Down
5 changes: 4 additions & 1 deletion src/generators/template/TemplateDependencyManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { AbstractDependencyManager } from '../AbstractDependencyManager';
import { TemplateOptions } from './TemplateGenerator';

export class TemplateDependencyManager extends AbstractDependencyManager {
constructor(public options: TemplateOptions, dependencies: string[] = []) {
constructor(
public options: TemplateOptions,
dependencies: string[] = []
) {
super(dependencies);
}
}

0 comments on commit fe1be03

Please sign in to comment.