Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
docs/
lib/
node_modules/
node_modules/
coverage/
6 changes: 3 additions & 3 deletions src/core/classes/Iterable.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable eslint-comments/no-unlimited-disable */

import {
Linking,
NativeEventEmitter,
Expand Down Expand Up @@ -81,11 +81,11 @@ export class Iterable {
// Lazy initialization to avoid circular dependency
if (!this._inAppManager) {
// Import here to avoid circular dependency at module level

/* eslint-disable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports */
const {
IterableInAppManager,
// eslint-disable-next-line
} = require('../../inApp/classes/IterableInAppManager');
/* eslint-enable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports */
this._inAppManager = new IterableInAppManager();
}
return this._inAppManager;
Expand Down
Loading