From 19618ed4f174ff6497774044871cf657725089d0 Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Wed, 7 Jul 2021 12:40:44 +0200 Subject: [PATCH] fix: wrong import paths (#292) --- src/generators/AbstractGenerator.ts | 2 +- src/interpreter/InterpretAdditionalItems.ts | 4 ++-- src/interpreter/InterpretAdditionalProperties.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/generators/AbstractGenerator.ts b/src/generators/AbstractGenerator.ts index 3dc35dbebe..1f1f321c17 100644 --- a/src/generators/AbstractGenerator.ts +++ b/src/generators/AbstractGenerator.ts @@ -2,7 +2,7 @@ import { CommonInputModel, CommonModel, OutputModel, Preset, Presets } from '../ import { InputProcessor } from '../processors'; import { IndentationTypes } from '../helpers'; import { isPresetWithOptions } from '../utils'; -import { RenderOutput } from 'models/RenderOutput'; +import { RenderOutput } from '../models/RenderOutput'; export interface CommonGeneratorOptions
{ indentation?: { diff --git a/src/interpreter/InterpretAdditionalItems.ts b/src/interpreter/InterpretAdditionalItems.ts index dfa259d4c3..52f20a3da9 100644 --- a/src/interpreter/InterpretAdditionalItems.ts +++ b/src/interpreter/InterpretAdditionalItems.ts @@ -1,5 +1,5 @@ -import { CommonModel } from 'models'; -import { Schema } from 'models/Schema'; +import { CommonModel } from '../models'; +import { Schema } from '../models/Schema'; import { Interpreter, InterpreterOptions } from './Interpreter'; /** diff --git a/src/interpreter/InterpretAdditionalProperties.ts b/src/interpreter/InterpretAdditionalProperties.ts index 120dc27453..7b5e4b11bd 100644 --- a/src/interpreter/InterpretAdditionalProperties.ts +++ b/src/interpreter/InterpretAdditionalProperties.ts @@ -1,5 +1,5 @@ -import { CommonModel } from 'models'; -import { Schema } from 'models/Schema'; +import { CommonModel } from '../models'; +import { Schema } from '../models/Schema'; import { Interpreter, InterpreterOptions } from './Interpreter'; import { isModelObject } from './Utils';