Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(TypeScript): move lru-map-like.d.ts to pacakge #76

Merged
merged 1 commit into from Feb 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -80,7 +80,7 @@
"zuul": "^3.10.1"
},
"dependencies": {
"lru-map-like": "^1.0.1",
"lru-map-like": "^1.1.2",
"object-assign": "^4.1.0"
}
}
2 changes: 1 addition & 1 deletion src/UILayer/QueuedStoreGroup.ts
Expand Up @@ -3,7 +3,7 @@
// polyfill Object.assign
import * as assert from "assert";
import ObjectAssign from "./object-assign";
import LRU from "./lru-map-like";
import LRU from "lru-map-like";
const CHANGE_STORE_GROUP = "CHANGE_STORE_GROUP";

import Dispatcher from "./../Dispatcher";
Expand Down
2 changes: 1 addition & 1 deletion src/UILayer/StoreGroup.ts
Expand Up @@ -4,7 +4,7 @@
// polyfill Object.assign
import ObjectAssign from "./object-assign";
import * as assert from "assert";
import LRU from "./lru-map-like";
import LRU from "lru-map-like";

import Dispatcher from "./../Dispatcher";
import Store from "./../Store";
Expand Down
36 changes: 0 additions & 36 deletions src/UILayer/lru-map-like.d.ts

This file was deleted.

4 changes: 0 additions & 4 deletions src/UILayer/lru-map-like.js

This file was deleted.