diff --git a/package.json b/package.json index 6e3621ac..ca72911d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "inversify-express-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "Some utilities for the development of express applications with Inversify", "main": "lib/index.js", "jsnext:main": "es/index.js", diff --git a/src/decorators.ts b/src/decorators.ts index 8e5263e3..497c710e 100644 --- a/src/decorators.ts +++ b/src/decorators.ts @@ -1,8 +1,7 @@ import * as express from "express"; import { interfaces } from "./interfaces"; -import { METADATA_KEY, PARAMETER_TYPE } from "./constants"; +import { TYPE, METADATA_KEY, PARAMETER_TYPE } from "./constants"; import { inject } from "inversify"; -import { TYPE } from "../src/constants"; export const httpContext = inject(TYPE.HttpContext);