diff --git a/package.json b/package.json index 4aa9876..23847c1 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "build": "rimraf build && npm run-script build:web && npm run-script build:app", "build:web": "webpack --progress --profile --bail", "build:app": "tsc -p tsconfig-app.json", + "lint": "npm run-script lint:app", "lint:app": "tslint --project ./tsconfig-app.json -t stylish" }, "repository": { diff --git a/src/MemoryCache.ts b/src/MemoryCache.ts index 2fdae45..6453a26 100644 --- a/src/MemoryCache.ts +++ b/src/MemoryCache.ts @@ -1,8 +1,8 @@ -import * as cache from "memory-cache"; +import * as memoryCache from "memory-cache"; export class MemoryCache { - private internalCache = new cache.Cache(); + private internalCache = new memoryCache.Cache(); constructor() { }