Skip to content

Commit 209a7f1

Browse files
committed
fixes
1 parent 25ac15d commit 209a7f1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"builder": "@angular-eslint/builder:lint",
3838
"options": {
3939
"lintFilePatterns": [
40-
"lib/**/*.ts",
41-
"lib/**/*.html"
40+
"lib/src/**/*.ts",
41+
"lib/src/**/*.html"
4242
]
4343
}
4444
}

lib/src/lib/testing/cleaning.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { IndexedDBDatabase } from "../databases/indexeddb-database";
22
import { MemoryDatabase } from "../databases/memory-database";
3-
import { StorageMap } from "../storages/storage-map.service";
3+
import { StorageMap } from "../storages/storage-map";
44

55
/**
66
* Helper to clear all data in storage to avoid tests overlap

lib/src/lib/testing/interoperability.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { TestBed } from "@angular/core/testing";
22
import { IndexedDBDatabase } from "../databases/indexeddb-database";
33
import { provideIndexedDBDataBaseName } from "../providers";
4-
import { StorageMap } from "../storages/storage-map.service";
4+
import { StorageMap } from "../storages/storage-map";
55
import { DEFAULT_IDB_STORE_NAME } from "../tokens";
66
import type { JSONSchema } from "../validation/json-schema";
77
import { clearStorage, closeAndDeleteDatabase } from "./cleaning.spec";

tsconfig.eslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33
"include": [
4-
"lib/**/*.ts",
4+
"lib/src/**/*.ts",
55
"testing-apps/**/*.ts",
66
"playwright-demo.config.ts",
77
"playwright-localforage.config.ts"

0 commit comments

Comments
 (0)