is there a way or workaround for npm being annoying about audit vulns for wrangler? or do i have to
is there a way or workaround for npm being annoying about audit vulns for wrangler? or do i have to wait for wrangler to update to fix them?
{}, second prints what i expect2025-03-10 (not sure)process.env, remix kindaremix vite:dev is there anything im missing?--remote option with @cloudflare/vite-plugin?TypeError: The "options" argument must be of type object. Received an instance of AbortController
--env staging, and it wasn't finding my env for some reason. and it turns out, it's because there's this file being written to .wrangler/deploy/config.json that has these contents: which points to build/server/wrangler.json being written during the build process, which is a stripped down version of my wranger.jsonc. what's going on here???wrangler dev use my system environment variables? It doesn't pull them automatically, I have to list them in .dev.vars, and I'd like to avoid that.node_compat to nodejs_compat. Should I do this not only in my dev.toml but also wrangler.toml i.e. the TOML for the production version? Does production always use the latest Wrangler?node_compat. But a previous message told me to change node_compat to nodejs_compat for use with v.4, which I did. What am I doing wrong?nodejs_compat, not node_compat, right?nodejs_compat to my config, which is already there."Unexpected fields found in top-level field: "nodejs_compat"So I have messages telling me both to add
nodejs_compat and also that nodejs_compat is invalid."compatibility_date": "2025-02-28",
"compatibility_flags": [
"nodejs_compat",
"nodejs_compat_populate_process_env"
], } finally {
try {
if (typeof vitest === "undefined") {
process.disconnect?.();
}
await closeSentry();
const controller = new AbortController();
await Promise.race([
Promise.allSettled(dispatcher?.requests ?? []),
(0, import_promises32.setTimeout)(1e3, void 0, controller) // <<<< this?
// Ensure we don't hang indefinitely
]).then(() => controller.abort());
} catch (e7) {
logger.error(e7);
if (!cliHandlerThrew) {
throw e7;
}
}
}