markdown and readable flag
This commit is contained in:
@@ -83,9 +83,7 @@ class ChatArchiveSearchScreen extends HookConsumerWidget {
|
|||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Markdown(
|
MarkdownBody(
|
||||||
shrinkWrap: true,
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
data: '## ${chat.title}',
|
data: '## ${chat.title}',
|
||||||
),
|
),
|
||||||
if (chatEntity.dateTime != null)
|
if (chatEntity.dateTime != null)
|
||||||
@@ -93,9 +91,7 @@ class ChatArchiveSearchScreen extends HookConsumerWidget {
|
|||||||
chatEntity.dateTime!.formatWithMinutePrecision(),
|
chatEntity.dateTime!.formatWithMinutePrecision(),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8.0),
|
const SizedBox(height: 8.0),
|
||||||
Markdown(
|
MarkdownBody(
|
||||||
shrinkWrap: true,
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
data: chat.contentSnippet,
|
data: chat.contentSnippet,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ class TabRepository extends _$TabRepository {
|
|||||||
tabContentService.tabContentStream.listen((content) async {
|
tabContentService.tabContentStream.listen((content) async {
|
||||||
await _db.tabDao.updateTab(
|
await _db.tabDao.updateTab(
|
||||||
content.tabId,
|
content.tabId,
|
||||||
|
isProbablyReaderable: Value(content.isProbablyReaderable),
|
||||||
extractedContentMarkdown: Value(content.extractedContentMarkdown),
|
extractedContentMarkdown: Value(content.extractedContentMarkdown),
|
||||||
extractedContentPlain: Value(content.extractedContentPlain),
|
extractedContentPlain: Value(content.extractedContentPlain),
|
||||||
fullContentMarkdown: Value(content.fullContentMarkdown),
|
fullContentMarkdown: Value(content.fullContentMarkdown),
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ part of 'tab.dart';
|
|||||||
// RiverpodGenerator
|
// RiverpodGenerator
|
||||||
// **************************************************************************
|
// **************************************************************************
|
||||||
|
|
||||||
String _$tabRepositoryHash() => r'b151be1c18d87eff3a15f4b70f4e82fcc11047ec';
|
String _$tabRepositoryHash() => r'4269add3c89250ab30835055e3567a1e6d5c185a';
|
||||||
|
|
||||||
/// See also [TabRepository].
|
/// See also [TabRepository].
|
||||||
@ProviderFor(TabRepository)
|
@ProviderFor(TabRepository)
|
||||||
|
|||||||
+1
-3
@@ -142,11 +142,9 @@ class LandingContent extends HookConsumerWidget {
|
|||||||
textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold),
|
textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold),
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
),
|
),
|
||||||
Markdown(
|
MarkdownBody(
|
||||||
data: changelogAsset.data ?? '',
|
data: changelogAsset.data ?? '',
|
||||||
selectable: true,
|
selectable: true,
|
||||||
shrinkWrap: true,
|
|
||||||
physics: const NeverScrollableScrollPhysics(),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ class TabDao extends DatabaseAccessor<TabDatabase> with _$TabDaoMixin {
|
|||||||
String id, {
|
String id, {
|
||||||
Value<String?> url = const Value.absent(),
|
Value<String?> url = const Value.absent(),
|
||||||
Value<String?> title = const Value.absent(),
|
Value<String?> title = const Value.absent(),
|
||||||
|
Value<bool> isProbablyReaderable = const Value.absent(),
|
||||||
Value<String?> extractedContentMarkdown = const Value.absent(),
|
Value<String?> extractedContentMarkdown = const Value.absent(),
|
||||||
Value<String?> extractedContentPlain = const Value.absent(),
|
Value<String?> extractedContentPlain = const Value.absent(),
|
||||||
Value<String?> fullContentMarkdown = const Value.absent(),
|
Value<String?> fullContentMarkdown = const Value.absent(),
|
||||||
@@ -121,6 +122,7 @@ class TabDao extends DatabaseAccessor<TabDatabase> with _$TabDaoMixin {
|
|||||||
}) async {
|
}) async {
|
||||||
final doUpdate = url != const Value.absent() ||
|
final doUpdate = url != const Value.absent() ||
|
||||||
title != const Value.absent() ||
|
title != const Value.absent() ||
|
||||||
|
isProbablyReaderable != const Value.absent() ||
|
||||||
extractedContentMarkdown != const Value.absent() ||
|
extractedContentMarkdown != const Value.absent() ||
|
||||||
extractedContentPlain != const Value.absent() ||
|
extractedContentPlain != const Value.absent() ||
|
||||||
fullContentMarkdown != const Value.absent() ||
|
fullContentMarkdown != const Value.absent() ||
|
||||||
@@ -132,6 +134,7 @@ class TabDao extends DatabaseAccessor<TabDatabase> with _$TabDaoMixin {
|
|||||||
TabCompanion(
|
TabCompanion(
|
||||||
url: url,
|
url: url,
|
||||||
title: title,
|
title: title,
|
||||||
|
isProbablyReaderable: isProbablyReaderable,
|
||||||
extractedContentMarkdown: extractedContentMarkdown,
|
extractedContentMarkdown: extractedContentMarkdown,
|
||||||
extractedContentPlain: extractedContentPlain,
|
extractedContentPlain: extractedContentPlain,
|
||||||
fullContentMarkdown: fullContentMarkdown,
|
fullContentMarkdown: fullContentMarkdown,
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ CREATE TABLE tab (
|
|||||||
order_key TEXT NOT NULL,
|
order_key TEXT NOT NULL,
|
||||||
url TEXT,
|
url TEXT,
|
||||||
title TEXT,
|
title TEXT,
|
||||||
|
is_probably_readerable BOOL,
|
||||||
extracted_content_markdown TEXT,
|
extracted_content_markdown TEXT,
|
||||||
extracted_content_plain TEXT,
|
extracted_content_plain TEXT,
|
||||||
full_content_markdown TEXT,
|
full_content_markdown TEXT,
|
||||||
|
|||||||
@@ -205,6 +205,11 @@ class Tab extends Table with TableInfo<Tab, TabData> {
|
|||||||
type: DriftSqlType.string,
|
type: DriftSqlType.string,
|
||||||
requiredDuringInsert: false,
|
requiredDuringInsert: false,
|
||||||
$customConstraints: '');
|
$customConstraints: '');
|
||||||
|
late final GeneratedColumn<bool> isProbablyReaderable = GeneratedColumn<bool>(
|
||||||
|
'is_probably_readerable', aliasedName, true,
|
||||||
|
type: DriftSqlType.bool,
|
||||||
|
requiredDuringInsert: false,
|
||||||
|
$customConstraints: '');
|
||||||
late final GeneratedColumn<String> extractedContentMarkdown =
|
late final GeneratedColumn<String> extractedContentMarkdown =
|
||||||
GeneratedColumn<String>('extracted_content_markdown', aliasedName, true,
|
GeneratedColumn<String>('extracted_content_markdown', aliasedName, true,
|
||||||
type: DriftSqlType.string,
|
type: DriftSqlType.string,
|
||||||
@@ -237,6 +242,7 @@ class Tab extends Table with TableInfo<Tab, TabData> {
|
|||||||
orderKey,
|
orderKey,
|
||||||
url,
|
url,
|
||||||
title,
|
title,
|
||||||
|
isProbablyReaderable,
|
||||||
extractedContentMarkdown,
|
extractedContentMarkdown,
|
||||||
extractedContentPlain,
|
extractedContentPlain,
|
||||||
fullContentMarkdown,
|
fullContentMarkdown,
|
||||||
@@ -264,6 +270,8 @@ class Tab extends Table with TableInfo<Tab, TabData> {
|
|||||||
.read(DriftSqlType.string, data['${effectivePrefix}url']),
|
.read(DriftSqlType.string, data['${effectivePrefix}url']),
|
||||||
title: attachedDatabase.typeMapping
|
title: attachedDatabase.typeMapping
|
||||||
.read(DriftSqlType.string, data['${effectivePrefix}title']),
|
.read(DriftSqlType.string, data['${effectivePrefix}title']),
|
||||||
|
isProbablyReaderable: attachedDatabase.typeMapping.read(
|
||||||
|
DriftSqlType.bool, data['${effectivePrefix}is_probably_readerable']),
|
||||||
extractedContentMarkdown: attachedDatabase.typeMapping.read(
|
extractedContentMarkdown: attachedDatabase.typeMapping.read(
|
||||||
DriftSqlType.string,
|
DriftSqlType.string,
|
||||||
data['${effectivePrefix}extracted_content_markdown']),
|
data['${effectivePrefix}extracted_content_markdown']),
|
||||||
@@ -294,6 +302,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
final String orderKey;
|
final String orderKey;
|
||||||
final String? url;
|
final String? url;
|
||||||
final String? title;
|
final String? title;
|
||||||
|
final bool? isProbablyReaderable;
|
||||||
final String? extractedContentMarkdown;
|
final String? extractedContentMarkdown;
|
||||||
final String? extractedContentPlain;
|
final String? extractedContentPlain;
|
||||||
final String? fullContentMarkdown;
|
final String? fullContentMarkdown;
|
||||||
@@ -305,6 +314,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
required this.orderKey,
|
required this.orderKey,
|
||||||
this.url,
|
this.url,
|
||||||
this.title,
|
this.title,
|
||||||
|
this.isProbablyReaderable,
|
||||||
this.extractedContentMarkdown,
|
this.extractedContentMarkdown,
|
||||||
this.extractedContentPlain,
|
this.extractedContentPlain,
|
||||||
this.fullContentMarkdown,
|
this.fullContentMarkdown,
|
||||||
@@ -324,6 +334,9 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
if (!nullToAbsent || title != null) {
|
if (!nullToAbsent || title != null) {
|
||||||
map['title'] = Variable<String>(title);
|
map['title'] = Variable<String>(title);
|
||||||
}
|
}
|
||||||
|
if (!nullToAbsent || isProbablyReaderable != null) {
|
||||||
|
map['is_probably_readerable'] = Variable<bool>(isProbablyReaderable);
|
||||||
|
}
|
||||||
if (!nullToAbsent || extractedContentMarkdown != null) {
|
if (!nullToAbsent || extractedContentMarkdown != null) {
|
||||||
map['extracted_content_markdown'] =
|
map['extracted_content_markdown'] =
|
||||||
Variable<String>(extractedContentMarkdown);
|
Variable<String>(extractedContentMarkdown);
|
||||||
@@ -350,6 +363,8 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
orderKey: serializer.fromJson<String>(json['order_key']),
|
orderKey: serializer.fromJson<String>(json['order_key']),
|
||||||
url: serializer.fromJson<String?>(json['url']),
|
url: serializer.fromJson<String?>(json['url']),
|
||||||
title: serializer.fromJson<String?>(json['title']),
|
title: serializer.fromJson<String?>(json['title']),
|
||||||
|
isProbablyReaderable:
|
||||||
|
serializer.fromJson<bool?>(json['is_probably_readerable']),
|
||||||
extractedContentMarkdown:
|
extractedContentMarkdown:
|
||||||
serializer.fromJson<String?>(json['extracted_content_markdown']),
|
serializer.fromJson<String?>(json['extracted_content_markdown']),
|
||||||
extractedContentPlain:
|
extractedContentPlain:
|
||||||
@@ -370,6 +385,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
'order_key': serializer.toJson<String>(orderKey),
|
'order_key': serializer.toJson<String>(orderKey),
|
||||||
'url': serializer.toJson<String?>(url),
|
'url': serializer.toJson<String?>(url),
|
||||||
'title': serializer.toJson<String?>(title),
|
'title': serializer.toJson<String?>(title),
|
||||||
|
'is_probably_readerable': serializer.toJson<bool?>(isProbablyReaderable),
|
||||||
'extracted_content_markdown':
|
'extracted_content_markdown':
|
||||||
serializer.toJson<String?>(extractedContentMarkdown),
|
serializer.toJson<String?>(extractedContentMarkdown),
|
||||||
'extracted_content_plain':
|
'extracted_content_plain':
|
||||||
@@ -386,6 +402,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
String? orderKey,
|
String? orderKey,
|
||||||
Value<String?> url = const Value.absent(),
|
Value<String?> url = const Value.absent(),
|
||||||
Value<String?> title = const Value.absent(),
|
Value<String?> title = const Value.absent(),
|
||||||
|
Value<bool?> isProbablyReaderable = const Value.absent(),
|
||||||
Value<String?> extractedContentMarkdown = const Value.absent(),
|
Value<String?> extractedContentMarkdown = const Value.absent(),
|
||||||
Value<String?> extractedContentPlain = const Value.absent(),
|
Value<String?> extractedContentPlain = const Value.absent(),
|
||||||
Value<String?> fullContentMarkdown = const Value.absent(),
|
Value<String?> fullContentMarkdown = const Value.absent(),
|
||||||
@@ -397,6 +414,9 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
orderKey: orderKey ?? this.orderKey,
|
orderKey: orderKey ?? this.orderKey,
|
||||||
url: url.present ? url.value : this.url,
|
url: url.present ? url.value : this.url,
|
||||||
title: title.present ? title.value : this.title,
|
title: title.present ? title.value : this.title,
|
||||||
|
isProbablyReaderable: isProbablyReaderable.present
|
||||||
|
? isProbablyReaderable.value
|
||||||
|
: this.isProbablyReaderable,
|
||||||
extractedContentMarkdown: extractedContentMarkdown.present
|
extractedContentMarkdown: extractedContentMarkdown.present
|
||||||
? extractedContentMarkdown.value
|
? extractedContentMarkdown.value
|
||||||
: this.extractedContentMarkdown,
|
: this.extractedContentMarkdown,
|
||||||
@@ -419,6 +439,9 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
orderKey: data.orderKey.present ? data.orderKey.value : this.orderKey,
|
orderKey: data.orderKey.present ? data.orderKey.value : this.orderKey,
|
||||||
url: data.url.present ? data.url.value : this.url,
|
url: data.url.present ? data.url.value : this.url,
|
||||||
title: data.title.present ? data.title.value : this.title,
|
title: data.title.present ? data.title.value : this.title,
|
||||||
|
isProbablyReaderable: data.isProbablyReaderable.present
|
||||||
|
? data.isProbablyReaderable.value
|
||||||
|
: this.isProbablyReaderable,
|
||||||
extractedContentMarkdown: data.extractedContentMarkdown.present
|
extractedContentMarkdown: data.extractedContentMarkdown.present
|
||||||
? data.extractedContentMarkdown.value
|
? data.extractedContentMarkdown.value
|
||||||
: this.extractedContentMarkdown,
|
: this.extractedContentMarkdown,
|
||||||
@@ -443,6 +466,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
..write('orderKey: $orderKey, ')
|
..write('orderKey: $orderKey, ')
|
||||||
..write('url: $url, ')
|
..write('url: $url, ')
|
||||||
..write('title: $title, ')
|
..write('title: $title, ')
|
||||||
|
..write('isProbablyReaderable: $isProbablyReaderable, ')
|
||||||
..write('extractedContentMarkdown: $extractedContentMarkdown, ')
|
..write('extractedContentMarkdown: $extractedContentMarkdown, ')
|
||||||
..write('extractedContentPlain: $extractedContentPlain, ')
|
..write('extractedContentPlain: $extractedContentPlain, ')
|
||||||
..write('fullContentMarkdown: $fullContentMarkdown, ')
|
..write('fullContentMarkdown: $fullContentMarkdown, ')
|
||||||
@@ -459,6 +483,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
orderKey,
|
orderKey,
|
||||||
url,
|
url,
|
||||||
title,
|
title,
|
||||||
|
isProbablyReaderable,
|
||||||
extractedContentMarkdown,
|
extractedContentMarkdown,
|
||||||
extractedContentPlain,
|
extractedContentPlain,
|
||||||
fullContentMarkdown,
|
fullContentMarkdown,
|
||||||
@@ -473,6 +498,7 @@ class TabData extends DataClass implements Insertable<TabData> {
|
|||||||
other.orderKey == this.orderKey &&
|
other.orderKey == this.orderKey &&
|
||||||
other.url == this.url &&
|
other.url == this.url &&
|
||||||
other.title == this.title &&
|
other.title == this.title &&
|
||||||
|
other.isProbablyReaderable == this.isProbablyReaderable &&
|
||||||
other.extractedContentMarkdown == this.extractedContentMarkdown &&
|
other.extractedContentMarkdown == this.extractedContentMarkdown &&
|
||||||
other.extractedContentPlain == this.extractedContentPlain &&
|
other.extractedContentPlain == this.extractedContentPlain &&
|
||||||
other.fullContentMarkdown == this.fullContentMarkdown &&
|
other.fullContentMarkdown == this.fullContentMarkdown &&
|
||||||
@@ -486,6 +512,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
final Value<String> orderKey;
|
final Value<String> orderKey;
|
||||||
final Value<String?> url;
|
final Value<String?> url;
|
||||||
final Value<String?> title;
|
final Value<String?> title;
|
||||||
|
final Value<bool?> isProbablyReaderable;
|
||||||
final Value<String?> extractedContentMarkdown;
|
final Value<String?> extractedContentMarkdown;
|
||||||
final Value<String?> extractedContentPlain;
|
final Value<String?> extractedContentPlain;
|
||||||
final Value<String?> fullContentMarkdown;
|
final Value<String?> fullContentMarkdown;
|
||||||
@@ -498,6 +525,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
this.orderKey = const Value.absent(),
|
this.orderKey = const Value.absent(),
|
||||||
this.url = const Value.absent(),
|
this.url = const Value.absent(),
|
||||||
this.title = const Value.absent(),
|
this.title = const Value.absent(),
|
||||||
|
this.isProbablyReaderable = const Value.absent(),
|
||||||
this.extractedContentMarkdown = const Value.absent(),
|
this.extractedContentMarkdown = const Value.absent(),
|
||||||
this.extractedContentPlain = const Value.absent(),
|
this.extractedContentPlain = const Value.absent(),
|
||||||
this.fullContentMarkdown = const Value.absent(),
|
this.fullContentMarkdown = const Value.absent(),
|
||||||
@@ -511,6 +539,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
required String orderKey,
|
required String orderKey,
|
||||||
this.url = const Value.absent(),
|
this.url = const Value.absent(),
|
||||||
this.title = const Value.absent(),
|
this.title = const Value.absent(),
|
||||||
|
this.isProbablyReaderable = const Value.absent(),
|
||||||
this.extractedContentMarkdown = const Value.absent(),
|
this.extractedContentMarkdown = const Value.absent(),
|
||||||
this.extractedContentPlain = const Value.absent(),
|
this.extractedContentPlain = const Value.absent(),
|
||||||
this.fullContentMarkdown = const Value.absent(),
|
this.fullContentMarkdown = const Value.absent(),
|
||||||
@@ -526,6 +555,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
Expression<String>? orderKey,
|
Expression<String>? orderKey,
|
||||||
Expression<String>? url,
|
Expression<String>? url,
|
||||||
Expression<String>? title,
|
Expression<String>? title,
|
||||||
|
Expression<bool>? isProbablyReaderable,
|
||||||
Expression<String>? extractedContentMarkdown,
|
Expression<String>? extractedContentMarkdown,
|
||||||
Expression<String>? extractedContentPlain,
|
Expression<String>? extractedContentPlain,
|
||||||
Expression<String>? fullContentMarkdown,
|
Expression<String>? fullContentMarkdown,
|
||||||
@@ -539,6 +569,8 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
if (orderKey != null) 'order_key': orderKey,
|
if (orderKey != null) 'order_key': orderKey,
|
||||||
if (url != null) 'url': url,
|
if (url != null) 'url': url,
|
||||||
if (title != null) 'title': title,
|
if (title != null) 'title': title,
|
||||||
|
if (isProbablyReaderable != null)
|
||||||
|
'is_probably_readerable': isProbablyReaderable,
|
||||||
if (extractedContentMarkdown != null)
|
if (extractedContentMarkdown != null)
|
||||||
'extracted_content_markdown': extractedContentMarkdown,
|
'extracted_content_markdown': extractedContentMarkdown,
|
||||||
if (extractedContentPlain != null)
|
if (extractedContentPlain != null)
|
||||||
@@ -557,6 +589,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
Value<String>? orderKey,
|
Value<String>? orderKey,
|
||||||
Value<String?>? url,
|
Value<String?>? url,
|
||||||
Value<String?>? title,
|
Value<String?>? title,
|
||||||
|
Value<bool?>? isProbablyReaderable,
|
||||||
Value<String?>? extractedContentMarkdown,
|
Value<String?>? extractedContentMarkdown,
|
||||||
Value<String?>? extractedContentPlain,
|
Value<String?>? extractedContentPlain,
|
||||||
Value<String?>? fullContentMarkdown,
|
Value<String?>? fullContentMarkdown,
|
||||||
@@ -569,6 +602,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
orderKey: orderKey ?? this.orderKey,
|
orderKey: orderKey ?? this.orderKey,
|
||||||
url: url ?? this.url,
|
url: url ?? this.url,
|
||||||
title: title ?? this.title,
|
title: title ?? this.title,
|
||||||
|
isProbablyReaderable: isProbablyReaderable ?? this.isProbablyReaderable,
|
||||||
extractedContentMarkdown:
|
extractedContentMarkdown:
|
||||||
extractedContentMarkdown ?? this.extractedContentMarkdown,
|
extractedContentMarkdown ?? this.extractedContentMarkdown,
|
||||||
extractedContentPlain:
|
extractedContentPlain:
|
||||||
@@ -598,6 +632,10 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
if (title.present) {
|
if (title.present) {
|
||||||
map['title'] = Variable<String>(title.value);
|
map['title'] = Variable<String>(title.value);
|
||||||
}
|
}
|
||||||
|
if (isProbablyReaderable.present) {
|
||||||
|
map['is_probably_readerable'] =
|
||||||
|
Variable<bool>(isProbablyReaderable.value);
|
||||||
|
}
|
||||||
if (extractedContentMarkdown.present) {
|
if (extractedContentMarkdown.present) {
|
||||||
map['extracted_content_markdown'] =
|
map['extracted_content_markdown'] =
|
||||||
Variable<String>(extractedContentMarkdown.value);
|
Variable<String>(extractedContentMarkdown.value);
|
||||||
@@ -630,6 +668,7 @@ class TabCompanion extends UpdateCompanion<TabData> {
|
|||||||
..write('orderKey: $orderKey, ')
|
..write('orderKey: $orderKey, ')
|
||||||
..write('url: $url, ')
|
..write('url: $url, ')
|
||||||
..write('title: $title, ')
|
..write('title: $title, ')
|
||||||
|
..write('isProbablyReaderable: $isProbablyReaderable, ')
|
||||||
..write('extractedContentMarkdown: $extractedContentMarkdown, ')
|
..write('extractedContentMarkdown: $extractedContentMarkdown, ')
|
||||||
..write('extractedContentPlain: $extractedContentPlain, ')
|
..write('extractedContentPlain: $extractedContentPlain, ')
|
||||||
..write('fullContentMarkdown: $fullContentMarkdown, ')
|
..write('fullContentMarkdown: $fullContentMarkdown, ')
|
||||||
@@ -1308,6 +1347,7 @@ typedef $TabCreateCompanionBuilder = TabCompanion Function({
|
|||||||
required String orderKey,
|
required String orderKey,
|
||||||
Value<String?> url,
|
Value<String?> url,
|
||||||
Value<String?> title,
|
Value<String?> title,
|
||||||
|
Value<bool?> isProbablyReaderable,
|
||||||
Value<String?> extractedContentMarkdown,
|
Value<String?> extractedContentMarkdown,
|
||||||
Value<String?> extractedContentPlain,
|
Value<String?> extractedContentPlain,
|
||||||
Value<String?> fullContentMarkdown,
|
Value<String?> fullContentMarkdown,
|
||||||
@@ -1321,6 +1361,7 @@ typedef $TabUpdateCompanionBuilder = TabCompanion Function({
|
|||||||
Value<String> orderKey,
|
Value<String> orderKey,
|
||||||
Value<String?> url,
|
Value<String?> url,
|
||||||
Value<String?> title,
|
Value<String?> title,
|
||||||
|
Value<bool?> isProbablyReaderable,
|
||||||
Value<String?> extractedContentMarkdown,
|
Value<String?> extractedContentMarkdown,
|
||||||
Value<String?> extractedContentPlain,
|
Value<String?> extractedContentPlain,
|
||||||
Value<String?> fullContentMarkdown,
|
Value<String?> fullContentMarkdown,
|
||||||
@@ -1366,6 +1407,10 @@ class $TabFilterComposer extends Composer<_$TabDatabase, Tab> {
|
|||||||
ColumnFilters<String> get title => $composableBuilder(
|
ColumnFilters<String> get title => $composableBuilder(
|
||||||
column: $table.title, builder: (column) => ColumnFilters(column));
|
column: $table.title, builder: (column) => ColumnFilters(column));
|
||||||
|
|
||||||
|
ColumnFilters<bool> get isProbablyReaderable => $composableBuilder(
|
||||||
|
column: $table.isProbablyReaderable,
|
||||||
|
builder: (column) => ColumnFilters(column));
|
||||||
|
|
||||||
ColumnFilters<String> get extractedContentMarkdown => $composableBuilder(
|
ColumnFilters<String> get extractedContentMarkdown => $composableBuilder(
|
||||||
column: $table.extractedContentMarkdown,
|
column: $table.extractedContentMarkdown,
|
||||||
builder: (column) => ColumnFilters(column));
|
builder: (column) => ColumnFilters(column));
|
||||||
@@ -1426,6 +1471,10 @@ class $TabOrderingComposer extends Composer<_$TabDatabase, Tab> {
|
|||||||
ColumnOrderings<String> get title => $composableBuilder(
|
ColumnOrderings<String> get title => $composableBuilder(
|
||||||
column: $table.title, builder: (column) => ColumnOrderings(column));
|
column: $table.title, builder: (column) => ColumnOrderings(column));
|
||||||
|
|
||||||
|
ColumnOrderings<bool> get isProbablyReaderable => $composableBuilder(
|
||||||
|
column: $table.isProbablyReaderable,
|
||||||
|
builder: (column) => ColumnOrderings(column));
|
||||||
|
|
||||||
ColumnOrderings<String> get extractedContentMarkdown => $composableBuilder(
|
ColumnOrderings<String> get extractedContentMarkdown => $composableBuilder(
|
||||||
column: $table.extractedContentMarkdown,
|
column: $table.extractedContentMarkdown,
|
||||||
builder: (column) => ColumnOrderings(column));
|
builder: (column) => ColumnOrderings(column));
|
||||||
@@ -1486,6 +1535,9 @@ class $TabAnnotationComposer extends Composer<_$TabDatabase, Tab> {
|
|||||||
GeneratedColumn<String> get title =>
|
GeneratedColumn<String> get title =>
|
||||||
$composableBuilder(column: $table.title, builder: (column) => column);
|
$composableBuilder(column: $table.title, builder: (column) => column);
|
||||||
|
|
||||||
|
GeneratedColumn<bool> get isProbablyReaderable => $composableBuilder(
|
||||||
|
column: $table.isProbablyReaderable, builder: (column) => column);
|
||||||
|
|
||||||
GeneratedColumn<String> get extractedContentMarkdown => $composableBuilder(
|
GeneratedColumn<String> get extractedContentMarkdown => $composableBuilder(
|
||||||
column: $table.extractedContentMarkdown, builder: (column) => column);
|
column: $table.extractedContentMarkdown, builder: (column) => column);
|
||||||
|
|
||||||
@@ -1550,6 +1602,7 @@ class $TabTableManager extends RootTableManager<
|
|||||||
Value<String> orderKey = const Value.absent(),
|
Value<String> orderKey = const Value.absent(),
|
||||||
Value<String?> url = const Value.absent(),
|
Value<String?> url = const Value.absent(),
|
||||||
Value<String?> title = const Value.absent(),
|
Value<String?> title = const Value.absent(),
|
||||||
|
Value<bool?> isProbablyReaderable = const Value.absent(),
|
||||||
Value<String?> extractedContentMarkdown = const Value.absent(),
|
Value<String?> extractedContentMarkdown = const Value.absent(),
|
||||||
Value<String?> extractedContentPlain = const Value.absent(),
|
Value<String?> extractedContentPlain = const Value.absent(),
|
||||||
Value<String?> fullContentMarkdown = const Value.absent(),
|
Value<String?> fullContentMarkdown = const Value.absent(),
|
||||||
@@ -1563,6 +1616,7 @@ class $TabTableManager extends RootTableManager<
|
|||||||
orderKey: orderKey,
|
orderKey: orderKey,
|
||||||
url: url,
|
url: url,
|
||||||
title: title,
|
title: title,
|
||||||
|
isProbablyReaderable: isProbablyReaderable,
|
||||||
extractedContentMarkdown: extractedContentMarkdown,
|
extractedContentMarkdown: extractedContentMarkdown,
|
||||||
extractedContentPlain: extractedContentPlain,
|
extractedContentPlain: extractedContentPlain,
|
||||||
fullContentMarkdown: fullContentMarkdown,
|
fullContentMarkdown: fullContentMarkdown,
|
||||||
@@ -1576,6 +1630,7 @@ class $TabTableManager extends RootTableManager<
|
|||||||
required String orderKey,
|
required String orderKey,
|
||||||
Value<String?> url = const Value.absent(),
|
Value<String?> url = const Value.absent(),
|
||||||
Value<String?> title = const Value.absent(),
|
Value<String?> title = const Value.absent(),
|
||||||
|
Value<bool?> isProbablyReaderable = const Value.absent(),
|
||||||
Value<String?> extractedContentMarkdown = const Value.absent(),
|
Value<String?> extractedContentMarkdown = const Value.absent(),
|
||||||
Value<String?> extractedContentPlain = const Value.absent(),
|
Value<String?> extractedContentPlain = const Value.absent(),
|
||||||
Value<String?> fullContentMarkdown = const Value.absent(),
|
Value<String?> fullContentMarkdown = const Value.absent(),
|
||||||
@@ -1589,6 +1644,7 @@ class $TabTableManager extends RootTableManager<
|
|||||||
orderKey: orderKey,
|
orderKey: orderKey,
|
||||||
url: url,
|
url: url,
|
||||||
title: title,
|
title: title,
|
||||||
|
isProbablyReaderable: isProbablyReaderable,
|
||||||
extractedContentMarkdown: extractedContentMarkdown,
|
extractedContentMarkdown: extractedContentMarkdown,
|
||||||
extractedContentPlain: extractedContentPlain,
|
extractedContentPlain: extractedContentPlain,
|
||||||
fullContentMarkdown: fullContentMarkdown,
|
fullContentMarkdown: fullContentMarkdown,
|
||||||
|
|||||||
@@ -288,20 +288,9 @@ class SearchScreen extends HookConsumerWidget {
|
|||||||
result.extractedContent ?? result.fullContent;
|
result.extractedContent ?? result.fullContent;
|
||||||
|
|
||||||
return ListTile(
|
return ListTile(
|
||||||
title: Markdown(
|
title: MarkdownBody(data: result.title),
|
||||||
shrinkWrap: true,
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
data: result.title,
|
|
||||||
physics: const NeverScrollableScrollPhysics(),
|
|
||||||
),
|
|
||||||
subtitle: (!headHasMatch && bodyResult != null)
|
subtitle: (!headHasMatch && bodyResult != null)
|
||||||
? Markdown(
|
? MarkdownBody(data: bodyResult)
|
||||||
shrinkWrap: true,
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
data: bodyResult,
|
|
||||||
physics:
|
|
||||||
const NeverScrollableScrollPhysics(),
|
|
||||||
)
|
|
||||||
: null,
|
: null,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@ name: lensai_project
|
|||||||
command:
|
command:
|
||||||
clean:
|
clean:
|
||||||
hooks:
|
hooks:
|
||||||
pre: melos exec -c 6 -- "flutter clean"
|
pre: melos exec -c 1 -- "flutter clean"
|
||||||
|
|
||||||
scripts:
|
scripts:
|
||||||
upgrade-major-tighten:
|
upgrade-major-tighten:
|
||||||
|
|||||||
+2
@@ -12,6 +12,7 @@ import mozilla.components.concept.engine.webextension.Port
|
|||||||
import mozilla.components.lib.state.ext.flowScoped
|
import mozilla.components.lib.state.ext.flowScoped
|
||||||
import mozilla.components.support.base.feature.LifecycleAwareFeature
|
import mozilla.components.support.base.feature.LifecycleAwareFeature
|
||||||
import mozilla.components.support.base.log.logger.Logger
|
import mozilla.components.support.base.log.logger.Logger
|
||||||
|
import mozilla.components.support.ktx.android.org.json.tryGetInt
|
||||||
import mozilla.components.support.ktx.android.org.json.tryGetString
|
import mozilla.components.support.ktx.android.org.json.tryGetString
|
||||||
import mozilla.components.support.ktx.kotlinx.coroutines.flow.filterChanged
|
import mozilla.components.support.ktx.kotlinx.coroutines.flow.filterChanged
|
||||||
import mozilla.components.support.ktx.kotlinx.coroutines.flow.ifAnyChanged
|
import mozilla.components.support.ktx.kotlinx.coroutines.flow.ifAnyChanged
|
||||||
@@ -48,6 +49,7 @@ class ReadabilityExtractFeature(
|
|||||||
tabId = tabId,
|
tabId = tabId,
|
||||||
fullContentMarkdown = message.tryGetString("fullContentMarkdown"),
|
fullContentMarkdown = message.tryGetString("fullContentMarkdown"),
|
||||||
fullContentPlain = message.tryGetString("fullContentPlain"),
|
fullContentPlain = message.tryGetString("fullContentPlain"),
|
||||||
|
isProbablyReaderable = message.tryGetInt("isProbablyReaderable") == 1,
|
||||||
extractedContentMarkdown = message.tryGetString("extractedContentMarkdown"),
|
extractedContentMarkdown = message.tryGetString("extractedContentMarkdown"),
|
||||||
extractedContentPlain = message.tryGetString("extractedContentPlain")
|
extractedContentPlain = message.tryGetString("extractedContentPlain")
|
||||||
)
|
)
|
||||||
|
|||||||
+6
-3
@@ -1024,6 +1024,7 @@ data class TabContent (
|
|||||||
val tabId: String,
|
val tabId: String,
|
||||||
val fullContentMarkdown: String? = null,
|
val fullContentMarkdown: String? = null,
|
||||||
val fullContentPlain: String? = null,
|
val fullContentPlain: String? = null,
|
||||||
|
val isProbablyReaderable: Boolean,
|
||||||
val extractedContentMarkdown: String? = null,
|
val extractedContentMarkdown: String? = null,
|
||||||
val extractedContentPlain: String? = null
|
val extractedContentPlain: String? = null
|
||||||
)
|
)
|
||||||
@@ -1033,9 +1034,10 @@ data class TabContent (
|
|||||||
val tabId = pigeonVar_list[0] as String
|
val tabId = pigeonVar_list[0] as String
|
||||||
val fullContentMarkdown = pigeonVar_list[1] as String?
|
val fullContentMarkdown = pigeonVar_list[1] as String?
|
||||||
val fullContentPlain = pigeonVar_list[2] as String?
|
val fullContentPlain = pigeonVar_list[2] as String?
|
||||||
val extractedContentMarkdown = pigeonVar_list[3] as String?
|
val isProbablyReaderable = pigeonVar_list[3] as Boolean
|
||||||
val extractedContentPlain = pigeonVar_list[4] as String?
|
val extractedContentMarkdown = pigeonVar_list[4] as String?
|
||||||
return TabContent(tabId, fullContentMarkdown, fullContentPlain, extractedContentMarkdown, extractedContentPlain)
|
val extractedContentPlain = pigeonVar_list[5] as String?
|
||||||
|
return TabContent(tabId, fullContentMarkdown, fullContentPlain, isProbablyReaderable, extractedContentMarkdown, extractedContentPlain)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fun toList(): List<Any?> {
|
fun toList(): List<Any?> {
|
||||||
@@ -1043,6 +1045,7 @@ data class TabContent (
|
|||||||
tabId,
|
tabId,
|
||||||
fullContentMarkdown,
|
fullContentMarkdown,
|
||||||
fullContentPlain,
|
fullContentPlain,
|
||||||
|
isProbablyReaderable,
|
||||||
extractedContentMarkdown,
|
extractedContentMarkdown,
|
||||||
extractedContentPlain,
|
extractedContentPlain,
|
||||||
)
|
)
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<title>readability [6 Nov 2024 at 17:38]</title>
|
<title>readability [8 Jan 2025 at 20:49]</title>
|
||||||
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script>
|
<script>
|
||||||
window.chartData = [{"label":"readability.min.js","isAsset":true,"statSize":120090,"parsedSize":48006,"gzipSize":15433,"groups":[{"label":"node_modules","path":"./node_modules","statSize":92482,"groups":[{"label":"@mozilla/readability","path":"./node_modules/@mozilla/readability","statSize":88421,"groups":[{"id":804,"label":"Readability-readerable.js","path":"./node_modules/@mozilla/readability/Readability-readerable.js","statSize":4162},{"id":238,"label":"Readability.js","path":"./node_modules/@mozilla/readability/Readability.js","statSize":84033},{"id":396,"label":"index.js","path":"./node_modules/@mozilla/readability/index.js","statSize":226}],"parsedSize":0,"gzipSize":0},{"label":"remove-markdown","path":"./node_modules/remove-markdown","statSize":4061,"groups":[{"id":481,"label":"index.js","path":"./node_modules/remove-markdown/index.js","statSize":4061}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"src","path":"./src","statSize":27608,"groups":[{"id":922,"label":"index.js + 1 modules (concatenated)","path":"./src/index.js + 1 modules (concatenated)","statSize":27608,"parsedSize":47998,"gzipSize":15433,"concatenated":true,"groups":[{"label":"src","path":"./src/index.js + 1 modules (concatenated)/src","statSize":2546,"groups":[{"id":null,"label":"index.js","path":"./src/index.js + 1 modules (concatenated)/src/index.js","statSize":2546,"parsedSize":4426,"gzipSize":1423,"inaccurateSizes":true}],"parsedSize":4426,"gzipSize":1423,"inaccurateSizes":true},{"label":"node_modules/turndown/lib","path":"./src/index.js + 1 modules (concatenated)/node_modules/turndown/lib","statSize":25062,"groups":[{"id":null,"label":"turndown.browser.es.js","path":"./src/index.js + 1 modules (concatenated)/node_modules/turndown/lib/turndown.browser.es.js","statSize":25062,"parsedSize":43571,"gzipSize":14009,"inaccurateSizes":true}],"parsedSize":43571,"gzipSize":14009,"inaccurateSizes":true}]}],"parsedSize":47998,"gzipSize":15433}],"isInitialByEntrypoint":{"main":true}}];
|
window.chartData = [{"label":"readability.min.js","isAsset":true,"statSize":120208,"parsedSize":48065,"gzipSize":15453,"groups":[{"label":"node_modules","path":"./node_modules","statSize":92482,"groups":[{"label":"@mozilla/readability","path":"./node_modules/@mozilla/readability","statSize":88421,"groups":[{"id":804,"label":"Readability-readerable.js","path":"./node_modules/@mozilla/readability/Readability-readerable.js","statSize":4162},{"id":238,"label":"Readability.js","path":"./node_modules/@mozilla/readability/Readability.js","statSize":84033},{"id":396,"label":"index.js","path":"./node_modules/@mozilla/readability/index.js","statSize":226}],"parsedSize":0,"gzipSize":0},{"label":"remove-markdown","path":"./node_modules/remove-markdown","statSize":4061,"groups":[{"id":481,"label":"index.js","path":"./node_modules/remove-markdown/index.js","statSize":4061}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"src","path":"./src","statSize":27726,"groups":[{"id":922,"label":"index.js + 1 modules (concatenated)","path":"./src/index.js + 1 modules (concatenated)","statSize":27726,"parsedSize":48057,"gzipSize":15453,"concatenated":true,"groups":[{"label":"src","path":"./src/index.js + 1 modules (concatenated)/src","statSize":2664,"groups":[{"id":null,"label":"index.js","path":"./src/index.js + 1 modules (concatenated)/src/index.js","statSize":2664,"parsedSize":4617,"gzipSize":1484,"inaccurateSizes":true}],"parsedSize":4617,"gzipSize":1484,"inaccurateSizes":true},{"label":"node_modules/turndown/lib","path":"./src/index.js + 1 modules (concatenated)/node_modules/turndown/lib","statSize":25062,"groups":[{"id":null,"label":"turndown.browser.es.js","path":"./src/index.js + 1 modules (concatenated)/node_modules/turndown/lib/turndown.browser.es.js","statSize":25062,"parsedSize":43439,"gzipSize":13968,"inaccurateSizes":true}],"parsedSize":43439,"gzipSize":13968,"inaccurateSizes":true}]}],"parsedSize":48057,"gzipSize":15453}],"isInitialByEntrypoint":{"main":true}}];
|
||||||
window.entrypoints = ["main"];
|
window.entrypoints = ["main"];
|
||||||
window.defaultSizes = "parsed";
|
window.defaultSizes = "parsed";
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+157
-129
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"hash": "e972bd2742adaf1dd89a",
|
"hash": "a0b270ca122ccf1c69b1",
|
||||||
"version": "5.96.1",
|
"version": "5.96.1",
|
||||||
"time": 1769,
|
"time": 676,
|
||||||
"builtAt": 1730911086642,
|
"builtAt": 1736365755248,
|
||||||
"publicPath": "auto",
|
"publicPath": "auto",
|
||||||
"outputPath": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/dist",
|
"outputPath": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/dist",
|
||||||
"assetsByChunkName": {
|
"assetsByChunkName": {
|
||||||
"main": [
|
"main": [
|
||||||
"readability.min.js"
|
"readability.min.js"
|
||||||
@@ -14,14 +14,14 @@
|
|||||||
{
|
{
|
||||||
"type": "asset",
|
"type": "asset",
|
||||||
"name": "readability.min.js",
|
"name": "readability.min.js",
|
||||||
"size": 48006,
|
"size": 48065,
|
||||||
"emitted": true,
|
"emitted": true,
|
||||||
"comparedForEmit": false,
|
"comparedForEmit": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"info": {
|
"info": {
|
||||||
"javascriptModule": false,
|
"javascriptModule": false,
|
||||||
"minimized": true,
|
"minimized": true,
|
||||||
"size": 48006
|
"size": 48065
|
||||||
},
|
},
|
||||||
"chunkNames": [
|
"chunkNames": [
|
||||||
"main"
|
"main"
|
||||||
@@ -43,9 +43,9 @@
|
|||||||
"initial": true,
|
"initial": true,
|
||||||
"entry": true,
|
"entry": true,
|
||||||
"recorded": false,
|
"recorded": false,
|
||||||
"size": 120760,
|
"size": 120878,
|
||||||
"sizes": {
|
"sizes": {
|
||||||
"javascript": 120090,
|
"javascript": 120208,
|
||||||
"runtime": 670
|
"runtime": 670
|
||||||
},
|
},
|
||||||
"names": [
|
"names": [
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
"readability.min.js"
|
"readability.min.js"
|
||||||
],
|
],
|
||||||
"auxiliaryFiles": [],
|
"auxiliaryFiles": [],
|
||||||
"hash": "e213d94771310f354882",
|
"hash": "fd19b958f18c40df17b3",
|
||||||
"childrenByOrder": {},
|
"childrenByOrder": {},
|
||||||
"id": 792,
|
"id": 792,
|
||||||
"siblings": [],
|
"siblings": [],
|
||||||
@@ -78,9 +78,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"name": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"name": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"index": 3,
|
"index": 3,
|
||||||
"preOrderIndex": 3,
|
"preOrderIndex": 3,
|
||||||
"index2": 1,
|
"index2": 1,
|
||||||
@@ -89,16 +89,16 @@
|
|||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"dependent": true,
|
"dependent": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"id": 396
|
"id": 396
|
||||||
}
|
}
|
||||||
@@ -114,10 +114,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"module": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"module": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"moduleName": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -128,10 +128,10 @@
|
|||||||
"resolvedModuleId": 804
|
"resolvedModuleId": 804
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -163,9 +163,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"name": "./node_modules/@mozilla/readability/Readability.js",
|
"name": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"index": 2,
|
"index": 2,
|
||||||
"preOrderIndex": 2,
|
"preOrderIndex": 2,
|
||||||
"index2": 0,
|
"index2": 0,
|
||||||
@@ -174,16 +174,16 @@
|
|||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"dependent": true,
|
"dependent": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"id": 396
|
"id": 396
|
||||||
}
|
}
|
||||||
@@ -199,10 +199,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"module": "./node_modules/@mozilla/readability/Readability.js",
|
"module": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/Readability.js",
|
"moduleName": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/Readability.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -213,10 +213,10 @@
|
|||||||
"resolvedModuleId": 238
|
"resolvedModuleId": 238
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -248,9 +248,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"index": 1,
|
"index": 1,
|
||||||
"preOrderIndex": 1,
|
"preOrderIndex": 1,
|
||||||
"index2": 2,
|
"index2": 2,
|
||||||
@@ -259,11 +259,11 @@
|
|||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"dependent": true,
|
"dependent": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -279,10 +279,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -293,30 +293,44 @@
|
|||||||
"resolvedModuleId": 396
|
"resolvedModuleId": 396
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony side effect evaluation",
|
"type": "harmony side effect evaluation",
|
||||||
"active": true,
|
"active": true,
|
||||||
"explanation": "",
|
"explanation": "",
|
||||||
"userRequest": "@mozilla/readability",
|
"userRequest": "@mozilla/readability",
|
||||||
"loc": "7:0-51",
|
"loc": "7:0-73",
|
||||||
"moduleId": 922,
|
"moduleId": 922,
|
||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony import specifier",
|
"type": "harmony import specifier",
|
||||||
"active": true,
|
"active": true,
|
||||||
"explanation": "",
|
"explanation": "",
|
||||||
"userRequest": "@mozilla/readability",
|
"userRequest": "@mozilla/readability",
|
||||||
"loc": "18:19-30",
|
"loc": "13:17-37",
|
||||||
|
"moduleId": 922,
|
||||||
|
"resolvedModuleId": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
|
"module": "./src/index.js + 1 modules",
|
||||||
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
|
"resolvedModule": "./src/index.js",
|
||||||
|
"type": "harmony import specifier",
|
||||||
|
"active": true,
|
||||||
|
"explanation": "",
|
||||||
|
"userRequest": "@mozilla/readability",
|
||||||
|
"loc": "19:19-30",
|
||||||
"moduleId": 922,
|
"moduleId": 922,
|
||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
}
|
}
|
||||||
@@ -342,9 +356,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"name": "./node_modules/remove-markdown/index.js",
|
"name": "./node_modules/remove-markdown/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"index": 5,
|
"index": 5,
|
||||||
"preOrderIndex": 5,
|
"preOrderIndex": 5,
|
||||||
"index2": 4,
|
"index2": 4,
|
||||||
@@ -353,11 +367,11 @@
|
|||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"dependent": true,
|
"dependent": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -373,10 +387,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -387,10 +401,10 @@
|
|||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"module": "./node_modules/remove-markdown/index.js",
|
"module": "./node_modules/remove-markdown/index.js",
|
||||||
"moduleName": "./node_modules/remove-markdown/index.js",
|
"moduleName": "./node_modules/remove-markdown/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"resolvedModule": "./node_modules/remove-markdown/index.js",
|
"resolvedModule": "./node_modules/remove-markdown/index.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -414,17 +428,17 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"moduleType": "javascript/esm",
|
"moduleType": "javascript/esm",
|
||||||
"layer": null,
|
"layer": null,
|
||||||
"size": 27608,
|
"size": 27726,
|
||||||
"sizes": {
|
"sizes": {
|
||||||
"javascript": 27608
|
"javascript": 27726
|
||||||
},
|
},
|
||||||
"built": true,
|
"built": true,
|
||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"name": "./src/index.js + 1 modules",
|
"name": "./src/index.js + 1 modules",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"index": 0,
|
"index": 0,
|
||||||
"preOrderIndex": 0,
|
"preOrderIndex": 0,
|
||||||
"index2": 5,
|
"index2": 5,
|
||||||
@@ -483,17 +497,17 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"moduleType": "javascript/auto",
|
"moduleType": "javascript/auto",
|
||||||
"layer": null,
|
"layer": null,
|
||||||
"size": 2546,
|
"size": 2664,
|
||||||
"sizes": {
|
"sizes": {
|
||||||
"javascript": 2546
|
"javascript": 2664
|
||||||
},
|
},
|
||||||
"built": true,
|
"built": true,
|
||||||
"codeGenerated": false,
|
"codeGenerated": false,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"index": 0,
|
"index": 0,
|
||||||
"preOrderIndex": 0,
|
"preOrderIndex": 0,
|
||||||
"index2": 5,
|
"index2": 5,
|
||||||
@@ -534,9 +548,9 @@
|
|||||||
"codeGenerated": false,
|
"codeGenerated": false,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"index": 4,
|
"index": 4,
|
||||||
"preOrderIndex": 4,
|
"preOrderIndex": 4,
|
||||||
"index2": 3,
|
"index2": 3,
|
||||||
@@ -545,11 +559,11 @@
|
|||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"dependent": true,
|
"dependent": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -563,10 +577,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony side effect evaluation",
|
"type": "harmony side effect evaluation",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -577,10 +591,10 @@
|
|||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony import specifier",
|
"type": "harmony import specifier",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -729,17 +743,17 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"moduleType": "javascript/esm",
|
"moduleType": "javascript/esm",
|
||||||
"layer": null,
|
"layer": null,
|
||||||
"size": 27608,
|
"size": 27726,
|
||||||
"sizes": {
|
"sizes": {
|
||||||
"javascript": 27608
|
"javascript": 27726
|
||||||
},
|
},
|
||||||
"built": true,
|
"built": true,
|
||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"name": "./src/index.js + 1 modules",
|
"name": "./src/index.js + 1 modules",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"index": 0,
|
"index": 0,
|
||||||
"preOrderIndex": 0,
|
"preOrderIndex": 0,
|
||||||
"index2": 5,
|
"index2": 5,
|
||||||
@@ -797,17 +811,17 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"moduleType": "javascript/auto",
|
"moduleType": "javascript/auto",
|
||||||
"layer": null,
|
"layer": null,
|
||||||
"size": 2546,
|
"size": 2664,
|
||||||
"sizes": {
|
"sizes": {
|
||||||
"javascript": 2546
|
"javascript": 2664
|
||||||
},
|
},
|
||||||
"built": true,
|
"built": true,
|
||||||
"codeGenerated": false,
|
"codeGenerated": false,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"index": 0,
|
"index": 0,
|
||||||
"preOrderIndex": 0,
|
"preOrderIndex": 0,
|
||||||
"index2": 5,
|
"index2": 5,
|
||||||
@@ -847,9 +861,9 @@
|
|||||||
"codeGenerated": false,
|
"codeGenerated": false,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"index": 4,
|
"index": 4,
|
||||||
"preOrderIndex": 4,
|
"preOrderIndex": 4,
|
||||||
"index2": 3,
|
"index2": 3,
|
||||||
@@ -857,11 +871,11 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -875,10 +889,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony side effect evaluation",
|
"type": "harmony side effect evaluation",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -889,10 +903,10 @@
|
|||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony import specifier",
|
"type": "harmony import specifier",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -928,9 +942,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"index": 1,
|
"index": 1,
|
||||||
"preOrderIndex": 1,
|
"preOrderIndex": 1,
|
||||||
"index2": 2,
|
"index2": 2,
|
||||||
@@ -938,11 +952,11 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -958,10 +972,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -972,30 +986,44 @@
|
|||||||
"resolvedModuleId": 396
|
"resolvedModuleId": 396
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony side effect evaluation",
|
"type": "harmony side effect evaluation",
|
||||||
"active": true,
|
"active": true,
|
||||||
"explanation": "",
|
"explanation": "",
|
||||||
"userRequest": "@mozilla/readability",
|
"userRequest": "@mozilla/readability",
|
||||||
"loc": "7:0-51",
|
"loc": "7:0-73",
|
||||||
"moduleId": 922,
|
"moduleId": 922,
|
||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony import specifier",
|
"type": "harmony import specifier",
|
||||||
"active": true,
|
"active": true,
|
||||||
"explanation": "",
|
"explanation": "",
|
||||||
"userRequest": "@mozilla/readability",
|
"userRequest": "@mozilla/readability",
|
||||||
"loc": "18:19-30",
|
"loc": "13:17-37",
|
||||||
|
"moduleId": 922,
|
||||||
|
"resolvedModuleId": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
|
"module": "./src/index.js + 1 modules",
|
||||||
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
|
"resolvedModule": "./src/index.js",
|
||||||
|
"type": "harmony import specifier",
|
||||||
|
"active": true,
|
||||||
|
"explanation": "",
|
||||||
|
"userRequest": "@mozilla/readability",
|
||||||
|
"loc": "19:19-30",
|
||||||
"moduleId": 922,
|
"moduleId": 922,
|
||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
}
|
}
|
||||||
@@ -1021,9 +1049,9 @@
|
|||||||
"codeGenerated": false,
|
"codeGenerated": false,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
"name": "./node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/turndown/lib/turndown.browser.es.js",
|
||||||
"index": 4,
|
"index": 4,
|
||||||
"preOrderIndex": 4,
|
"preOrderIndex": 4,
|
||||||
"index2": 3,
|
"index2": 3,
|
||||||
@@ -1031,11 +1059,11 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": true,
|
"orphan": true,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -1049,10 +1077,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony side effect evaluation",
|
"type": "harmony side effect evaluation",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1063,10 +1091,10 @@
|
|||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"module": "./src/index.js",
|
"module": "./src/index.js",
|
||||||
"moduleName": "./src/index.js",
|
"moduleName": "./src/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "harmony import specifier",
|
"type": "harmony import specifier",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1100,9 +1128,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"name": "./node_modules/remove-markdown/index.js",
|
"name": "./node_modules/remove-markdown/index.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"index": 5,
|
"index": 5,
|
||||||
"preOrderIndex": 5,
|
"preOrderIndex": 5,
|
||||||
"index2": 4,
|
"index2": 4,
|
||||||
@@ -1110,11 +1138,11 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"issuerName": "./src/index.js",
|
"issuerName": "./src/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
}
|
}
|
||||||
@@ -1130,10 +1158,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js|b30ecb37559a8d7773ad4932c7b03100",
|
||||||
"module": "./src/index.js + 1 modules",
|
"module": "./src/index.js + 1 modules",
|
||||||
"moduleName": "./src/index.js + 1 modules",
|
"moduleName": "./src/index.js + 1 modules",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"resolvedModule": "./src/index.js",
|
"resolvedModule": "./src/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1144,10 +1172,10 @@
|
|||||||
"resolvedModuleId": null
|
"resolvedModuleId": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"module": "./node_modules/remove-markdown/index.js",
|
"module": "./node_modules/remove-markdown/index.js",
|
||||||
"moduleName": "./node_modules/remove-markdown/index.js",
|
"moduleName": "./node_modules/remove-markdown/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/remove-markdown/index.js",
|
||||||
"resolvedModule": "./node_modules/remove-markdown/index.js",
|
"resolvedModule": "./node_modules/remove-markdown/index.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1179,9 +1207,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"name": "./node_modules/@mozilla/readability/Readability.js",
|
"name": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"index": 2,
|
"index": 2,
|
||||||
"preOrderIndex": 2,
|
"preOrderIndex": 2,
|
||||||
"index2": 0,
|
"index2": 0,
|
||||||
@@ -1189,16 +1217,16 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"id": 396
|
"id": 396
|
||||||
}
|
}
|
||||||
@@ -1214,10 +1242,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"module": "./node_modules/@mozilla/readability/Readability.js",
|
"module": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/Readability.js",
|
"moduleName": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/Readability.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/Readability.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1228,10 +1256,10 @@
|
|||||||
"resolvedModuleId": 238
|
"resolvedModuleId": 238
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1263,9 +1291,9 @@
|
|||||||
"codeGenerated": true,
|
"codeGenerated": true,
|
||||||
"buildTimeExecuted": false,
|
"buildTimeExecuted": false,
|
||||||
"cached": false,
|
"cached": false,
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"name": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"name": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"nameForCondition": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"nameForCondition": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"index": 3,
|
"index": 3,
|
||||||
"preOrderIndex": 3,
|
"preOrderIndex": 3,
|
||||||
"index2": 1,
|
"index2": 1,
|
||||||
@@ -1273,16 +1301,16 @@
|
|||||||
"cacheable": true,
|
"cacheable": true,
|
||||||
"optional": false,
|
"optional": false,
|
||||||
"orphan": false,
|
"orphan": false,
|
||||||
"issuer": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"issuer": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
"issuerName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"issuerPath": [
|
"issuerPath": [
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0].use!/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/src/index.js",
|
||||||
"name": "./src/index.js",
|
"name": "./src/index.js",
|
||||||
"id": null
|
"id": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"identifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"identifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"name": "./node_modules/@mozilla/readability/index.js",
|
"name": "./node_modules/@mozilla/readability/index.js",
|
||||||
"id": 396
|
"id": 396
|
||||||
}
|
}
|
||||||
@@ -1298,10 +1326,10 @@
|
|||||||
"assets": [],
|
"assets": [],
|
||||||
"reasons": [
|
"reasons": [
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"module": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"module": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"moduleName": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/Readability-readerable.js",
|
||||||
"type": "cjs self exports reference",
|
"type": "cjs self exports reference",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1312,10 +1340,10 @@
|
|||||||
"resolvedModuleId": 804
|
"resolvedModuleId": 804
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"moduleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"module": "./node_modules/@mozilla/readability/index.js",
|
"module": "./node_modules/@mozilla/readability/index.js",
|
||||||
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
"moduleName": "./node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModuleIdentifier": "/home/fafre/Repos/kagi_bang_bang/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
"resolvedModuleIdentifier": "/home/fafre/development/repos/lensai/packages/flutter_mozilla_components/javascript/readability/node_modules/@mozilla/readability/index.js",
|
||||||
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
"resolvedModule": "./node_modules/@mozilla/readability/index.js",
|
||||||
"type": "cjs require",
|
"type": "cjs require",
|
||||||
"active": true,
|
"active": true,
|
||||||
@@ -1450,11 +1478,11 @@
|
|||||||
"assets": [
|
"assets": [
|
||||||
{
|
{
|
||||||
"name": "readability.min.js",
|
"name": "readability.min.js",
|
||||||
"size": 48006
|
"size": 48065
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filteredAssets": 0,
|
"filteredAssets": 0,
|
||||||
"assetsSize": 48006,
|
"assetsSize": 48065,
|
||||||
"auxiliaryAssets": [],
|
"auxiliaryAssets": [],
|
||||||
"filteredAuxiliaryAssets": 0,
|
"filteredAuxiliaryAssets": 0,
|
||||||
"auxiliaryAssetsSize": 0,
|
"auxiliaryAssetsSize": 0,
|
||||||
@@ -1472,11 +1500,11 @@
|
|||||||
"assets": [
|
"assets": [
|
||||||
{
|
{
|
||||||
"name": "readability.min.js",
|
"name": "readability.min.js",
|
||||||
"size": 48006
|
"size": 48065
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filteredAssets": 0,
|
"filteredAssets": 0,
|
||||||
"assetsSize": 48006,
|
"assetsSize": 48065,
|
||||||
"auxiliaryAssets": [],
|
"auxiliaryAssets": [],
|
||||||
"filteredAuxiliaryAssets": 0,
|
"filteredAuxiliaryAssets": 0,
|
||||||
"auxiliaryAssetsSize": 0,
|
"auxiliaryAssetsSize": 0,
|
||||||
|
|||||||
+3
-3
@@ -2274,9 +2274,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cross-spawn": {
|
"node_modules/cross-spawn": {
|
||||||
"version": "7.0.3",
|
"version": "7.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
||||||
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
|
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Readability } from '@mozilla/readability';
|
import { Readability, isProbablyReaderable } from '@mozilla/readability';
|
||||||
import TurndownService from 'turndown';
|
import TurndownService from 'turndown';
|
||||||
|
|
||||||
const removeMarkdown = require('remove-markdown');
|
const removeMarkdown = require('remove-markdown');
|
||||||
@@ -7,6 +7,7 @@ const turndownService = new TurndownService();
|
|||||||
|
|
||||||
function parseReaderable(document, options) {
|
function parseReaderable(document, options) {
|
||||||
const clonedDoc = document.cloneNode(true);
|
const clonedDoc = document.cloneNode(true);
|
||||||
|
const readable = isProbablyReaderable(clonedDoc);
|
||||||
|
|
||||||
const fullMarkdown = turndownService.turndown(clonedDoc.body.innerHTML);
|
const fullMarkdown = turndownService.turndown(clonedDoc.body.innerHTML);
|
||||||
|
|
||||||
@@ -23,6 +24,7 @@ function parseReaderable(document, options) {
|
|||||||
|
|
||||||
response = {
|
response = {
|
||||||
...response,
|
...response,
|
||||||
|
isProbablyReaderable: readable ? 1 : 0,
|
||||||
extractedContentMarkdown: extractedMarkdown,
|
extractedContentMarkdown: extractedMarkdown,
|
||||||
extractedContentPlain: removeMarkdown(extractedMarkdown)
|
extractedContentPlain: removeMarkdown(extractedMarkdown)
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1135,6 +1135,7 @@ class TabContent {
|
|||||||
required this.tabId,
|
required this.tabId,
|
||||||
this.fullContentMarkdown,
|
this.fullContentMarkdown,
|
||||||
this.fullContentPlain,
|
this.fullContentPlain,
|
||||||
|
required this.isProbablyReaderable,
|
||||||
this.extractedContentMarkdown,
|
this.extractedContentMarkdown,
|
||||||
this.extractedContentPlain,
|
this.extractedContentPlain,
|
||||||
});
|
});
|
||||||
@@ -1145,6 +1146,8 @@ class TabContent {
|
|||||||
|
|
||||||
String? fullContentPlain;
|
String? fullContentPlain;
|
||||||
|
|
||||||
|
bool isProbablyReaderable;
|
||||||
|
|
||||||
String? extractedContentMarkdown;
|
String? extractedContentMarkdown;
|
||||||
|
|
||||||
String? extractedContentPlain;
|
String? extractedContentPlain;
|
||||||
@@ -1154,6 +1157,7 @@ class TabContent {
|
|||||||
tabId,
|
tabId,
|
||||||
fullContentMarkdown,
|
fullContentMarkdown,
|
||||||
fullContentPlain,
|
fullContentPlain,
|
||||||
|
isProbablyReaderable,
|
||||||
extractedContentMarkdown,
|
extractedContentMarkdown,
|
||||||
extractedContentPlain,
|
extractedContentPlain,
|
||||||
];
|
];
|
||||||
@@ -1165,8 +1169,9 @@ class TabContent {
|
|||||||
tabId: result[0]! as String,
|
tabId: result[0]! as String,
|
||||||
fullContentMarkdown: result[1] as String?,
|
fullContentMarkdown: result[1] as String?,
|
||||||
fullContentPlain: result[2] as String?,
|
fullContentPlain: result[2] as String?,
|
||||||
extractedContentMarkdown: result[3] as String?,
|
isProbablyReaderable: result[3]! as bool,
|
||||||
extractedContentPlain: result[4] as String?,
|
extractedContentMarkdown: result[4] as String?,
|
||||||
|
extractedContentPlain: result[5] as String?,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -525,6 +525,7 @@ class TabContent {
|
|||||||
final String tabId;
|
final String tabId;
|
||||||
final String? fullContentMarkdown;
|
final String? fullContentMarkdown;
|
||||||
final String? fullContentPlain;
|
final String? fullContentPlain;
|
||||||
|
final bool isProbablyReaderable;
|
||||||
final String? extractedContentMarkdown;
|
final String? extractedContentMarkdown;
|
||||||
final String? extractedContentPlain;
|
final String? extractedContentPlain;
|
||||||
|
|
||||||
@@ -532,6 +533,7 @@ class TabContent {
|
|||||||
this.tabId,
|
this.tabId,
|
||||||
this.fullContentMarkdown,
|
this.fullContentMarkdown,
|
||||||
this.fullContentPlain,
|
this.fullContentPlain,
|
||||||
|
this.isProbablyReaderable,
|
||||||
this.extractedContentMarkdown,
|
this.extractedContentMarkdown,
|
||||||
this.extractedContentPlain,
|
this.extractedContentPlain,
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user