tangled
alpha
login
or
join now
mary.my.id
/
bluesky-embed
9
fork
atom
custom element for embedding Bluesky posts and feeds
mary-ext.github.io/bluesky-embed
typescript
npm
bluesky
atcute
9
fork
atom
overview
issues
pulls
pipelines
chore: suppress state_referenced_locally warnings
mary.my.id
3 months ago
a4f12f8b
88d5c370
verified
This commit was signed with the committer's
known signature
.
mary.my.id
SSH Key Fingerprint:
SHA256:ZlTP/auFSGpGnaoDg4mCTG1g9OZvXp62jWR4c6H4O3c=
+41
7 changed files
expand all
collapse all
unified
split
packages
bluesky-post-embed
svelte.config.js
vite.config.ts
bluesky-profile-card-embed
svelte.config.js
vite.config.ts
bluesky-profile-feed-embed
svelte.config.js
vite.config.ts
internal
svelte.config.js
+8
packages/bluesky-post-embed/svelte.config.js
···
1
1
+
export default {
2
2
+
compilerOptions: {
3
3
+
warningFilter: (warning) => {
4
4
+
if (warning.code === 'state_referenced_locally') return false;
5
5
+
return true;
6
6
+
},
7
7
+
},
8
8
+
};
+3
packages/bluesky-post-embed/vite.config.ts
···
90
90
}
91
91
92
92
for (const warn of warnings) {
93
93
+
if (warn.code === 'state_referenced_locally') {
94
94
+
continue;
95
95
+
}
93
96
this.warn(warn);
94
97
}
95
98
+8
packages/bluesky-profile-card-embed/svelte.config.js
···
1
1
+
export default {
2
2
+
compilerOptions: {
3
3
+
warningFilter: (warning) => {
4
4
+
if (warning.code === 'state_referenced_locally') return false;
5
5
+
return true;
6
6
+
},
7
7
+
},
8
8
+
};
+3
packages/bluesky-profile-card-embed/vite.config.ts
···
90
90
}
91
91
92
92
for (const warn of warnings) {
93
93
+
if (warn.code === 'state_referenced_locally') {
94
94
+
continue;
95
95
+
}
93
96
this.warn(warn);
94
97
}
95
98
+8
packages/bluesky-profile-feed-embed/svelte.config.js
···
1
1
+
export default {
2
2
+
compilerOptions: {
3
3
+
warningFilter: (warning) => {
4
4
+
if (warning.code === 'state_referenced_locally') return false;
5
5
+
return true;
6
6
+
},
7
7
+
},
8
8
+
};
+3
packages/bluesky-profile-feed-embed/vite.config.ts
···
87
87
}
88
88
89
89
for (const warn of warnings) {
90
90
+
if (warn.code === 'state_referenced_locally') {
91
91
+
continue;
92
92
+
}
90
93
this.warn(warn);
91
94
}
92
95
+8
packages/internal/svelte.config.js
···
1
1
+
export default {
2
2
+
compilerOptions: {
3
3
+
warningFilter: (warning) => {
4
4
+
if (warning.code === 'state_referenced_locally') return false;
5
5
+
return true;
6
6
+
},
7
7
+
},
8
8
+
};