mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20: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}"`;
|
||||
|
||||
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
|
||||
});
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue