Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/typescript-vfs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typescript/vfs",
"version": "1.4.0",
"version": "1.4.1",
"license": "MIT",
"author": "TypeScript team",
"homepage": "https://github.com/microsoft/TypeScript-Website",
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-vfs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export const createDefaultMapFromCDN = (
function cached() {
const storelike = storer || localStorage

const keys = Object.keys(localStorage)
const keys = Object.keys(storelike)
keys.forEach(key => {
// Remove anything which isn't from this version
if (key.startsWith("ts-lib-") && !key.startsWith("ts-lib-" + version)) {
Expand Down