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}"`;
await esbuild.build({
entryPoints: ['src/worker.ts'],
sourcemap: 'external',
outdir: 'dist',
minify: true,
bundle: true,
format: 'esm',
plugins: [
const plugins = [];
if (process.env.SENTRY_DSN) {
plugins.push(
sentryEsbuildPlugin({
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
@ -83,7 +79,16 @@ await esbuild.build({
// https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
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
});

View file

@ -60,14 +60,16 @@ export const fetchTweetDetail = async (
useElongator,
(_conversation: unknown) => {
const conversation = _conversation as TweetDetailResult;
const response = processResponse(conversation?.data?.threaded_conversation_with_injections_v2?.instructions);
const tweet = findStatusInBucket(
status,
processResponse(conversation?.data?.threaded_conversation_with_injections_v2?.instructions)
response
);
if (tweet && isGraphQLTwitterStatus(tweet)) {
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);
},
@ -278,6 +280,8 @@ export const constructTwitterThread = async (
let response: TweetDetailResult | TweetResultsByRestIdResult | null = null;
let status: APITwitterStatus;
console.log('env', c.env)
/* We can use TweetDetail on elongator accounts to increase per-account rate limit.
We also use TweetDetail to process threads (WIP)