Tweaks for better local dev env

This commit is contained in:
dangered wolf 2024-02-29 18:21:01 -05:00
parent 99dccaf75d
commit a9ca1fcf43
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 20 additions and 11 deletions

View file

@ -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
}); });

View file

@ -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)