Skip to content

Commit

Permalink
chore: address lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptedAlchemy committed Dec 10, 2024
1 parent fee2946 commit dd18cb2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/enhanced/src/lib/sharing/ConsumeSharedPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@ class ConsumeSharedPlugin {
async (resolveData: ResolveData): Promise<Module | undefined> => {
const { context, request, dependencies, contextInfo } = resolveData;
// wait for resolving to be complete
//@ts-ignore
return promise.then(() => {
if (
dependencies[0] instanceof ConsumeSharedFallbackDependency ||
Expand Down Expand Up @@ -345,6 +344,7 @@ class ConsumeSharedPlugin {
});
}
}
return;
});
},
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ProvideSharedDependency extends Dependency {
read(),
read(),
);
//@ts-ignore
// @ts-expect-error - webpack serializer pattern requires static property
this.shareScope = context.read();
obj.deserialize(context);
return obj;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//@ts-nocheck
export default {
definitions: {
Provides: {
Expand Down

0 comments on commit dd18cb2

Please sign in to comment.