From cee2e72a46d1ad775a484cc872ffdf21f98b794d Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 21 Mar 2018 20:41:39 -0600 Subject: [PATCH] Appease the linter --- package.json | 1 + src/MemoryCache.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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() { }