mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Tweaks for better local dev env
This commit is contained in:
parent
99dccaf75d
commit
a9ca1fcf43
2 changed files with 20 additions and 11 deletions
|
@ -55,14 +55,10 @@ for (let envVar of envVariables) {
|
||||||
|
|
||||||
defines['RELEASE_NAME'] = `"${releaseName}"`;
|
defines['RELEASE_NAME'] = `"${releaseName}"`;
|
||||||
|
|
||||||
await esbuild.build({
|
const plugins = [];
|
||||||
entryPoints: ['src/worker.ts'],
|
|
||||||
sourcemap: 'external',
|
if (process.env.SENTRY_DSN) {
|
||||||
outdir: 'dist',
|
plugins.push(
|
||||||
minify: true,
|
|
||||||
bundle: true,
|
|
||||||
format: 'esm',
|
|
||||||
plugins: [
|
|
||||||
sentryEsbuildPlugin({
|
sentryEsbuildPlugin({
|
||||||
org: process.env.SENTRY_ORG,
|
org: process.env.SENTRY_ORG,
|
||||||
project: process.env.SENTRY_PROJECT,
|
project: process.env.SENTRY_PROJECT,
|
||||||
|
@ -83,7 +79,16 @@ await esbuild.build({
|
||||||
// https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
|
// https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
|
||||||
authToken: process.env.SENTRY_AUTH_TOKEN
|
authToken: process.env.SENTRY_AUTH_TOKEN
|
||||||
})
|
})
|
||||||
],
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
await esbuild.build({
|
||||||
|
entryPoints: ['src/worker.ts'],
|
||||||
|
sourcemap: 'external',
|
||||||
|
outdir: 'dist',
|
||||||
|
minify: true,
|
||||||
|
bundle: true,
|
||||||
|
format: 'esm',
|
||||||
|
plugins: plugins,
|
||||||
define: defines
|
define: defines
|
||||||
});
|
});
|
||||||
|
|
|
@ -60,14 +60,16 @@ export const fetchTweetDetail = async (
|
||||||
useElongator,
|
useElongator,
|
||||||
(_conversation: unknown) => {
|
(_conversation: unknown) => {
|
||||||
const conversation = _conversation as TweetDetailResult;
|
const conversation = _conversation as TweetDetailResult;
|
||||||
|
const response = processResponse(conversation?.data?.threaded_conversation_with_injections_v2?.instructions);
|
||||||
const tweet = findStatusInBucket(
|
const tweet = findStatusInBucket(
|
||||||
status,
|
status,
|
||||||
processResponse(conversation?.data?.threaded_conversation_with_injections_v2?.instructions)
|
response
|
||||||
);
|
);
|
||||||
if (tweet && isGraphQLTwitterStatus(tweet)) {
|
if (tweet && isGraphQLTwitterStatus(tweet)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
console.log('invalid graphql tweet', JSON.stringify(conversation));
|
console.log('invalid graphql tweet', tweet);
|
||||||
|
console.log('from response', response)
|
||||||
|
|
||||||
return Array.isArray(conversation?.errors);
|
return Array.isArray(conversation?.errors);
|
||||||
},
|
},
|
||||||
|
@ -278,6 +280,8 @@ export const constructTwitterThread = async (
|
||||||
|
|
||||||
let response: TweetDetailResult | TweetResultsByRestIdResult | null = null;
|
let response: TweetDetailResult | TweetResultsByRestIdResult | null = null;
|
||||||
let status: APITwitterStatus;
|
let status: APITwitterStatus;
|
||||||
|
|
||||||
|
console.log('env', c.env)
|
||||||
/* We can use TweetDetail on elongator accounts to increase per-account rate limit.
|
/* We can use TweetDetail on elongator accounts to increase per-account rate limit.
|
||||||
We also use TweetDetail to process threads (WIP)
|
We also use TweetDetail to process threads (WIP)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue