Skip to content

Commit

Permalink
Fix test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
joshkel committed Apr 27, 2024
1 parent 81e592c commit f3874fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/workbox-core/src/_private.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/

// We either expose defaults or we expose every named export.
import {allSettled} from './_private/allSettled.js';
import {assert} from './_private/assert.js';
import {cacheNames} from './_private/cacheNames.js';
import {cacheMatchIgnoreParams} from './_private/cacheMatchIgnoreParams.js';
Expand All @@ -25,6 +26,7 @@ import {WorkboxError} from './_private/WorkboxError.js';
import './_version.js';

export {
allSettled,
assert,
cacheMatchIgnoreParams,
cacheNames,
Expand Down
2 changes: 2 additions & 0 deletions packages/workbox-core/src/_private/allSettled.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import '../_version.js';

export interface PromiseResolution<T> {
status: 'fulfilled';
value: T;
Expand Down

0 comments on commit f3874fd

Please sign in to comment.