@@ -11,7 +11,7 @@ import { createHash } from 'node:crypto';
1111import { extname , join } from 'node:path' ;
1212import { WorkerPool } from '../../utils/worker-pool' ;
1313import { BuildOutputFile , BuildOutputFileType } from './bundler-context' ;
14- import type { LmbdCacheStore } from './lmdb-cache-store' ;
14+ import type { LmdbCacheStore } from './lmdb-cache-store' ;
1515import { createOutputFile } from './utils' ;
1616
1717/**
@@ -39,7 +39,7 @@ export interface I18nInlinerOptions {
3939export class I18nInliner {
4040 #cacheInitFailed = false ;
4141 #workerPool: WorkerPool ;
42- #cache: LmbdCacheStore | undefined ;
42+ #cache: LmdbCacheStore | undefined ;
4343 readonly #localizeFiles: ReadonlyMap < string , BuildOutputFile > ;
4444 readonly #unmodifiedFiles: Array < BuildOutputFile > ;
4545
@@ -274,9 +274,9 @@ export class I18nInliner {
274274
275275 // Initialize a persistent cache for i18n transformations.
276276 try {
277- const { LmbdCacheStore } = await import ( './lmdb-cache-store' ) ;
277+ const { LmdbCacheStore } = await import ( './lmdb-cache-store' ) ;
278278
279- this . #cache = new LmbdCacheStore ( join ( persistentCachePath , 'angular-i18n.db' ) ) ;
279+ this . #cache = new LmdbCacheStore ( join ( persistentCachePath , 'angular-i18n.db' ) ) ;
280280 } catch {
281281 this . #cacheInitFailed = true ;
282282
0 commit comments