I don't think there's a timeline, but you can follow https://github.com/cloudflare/wrangler-action/i
I don't think there's a timeline, but you can follow https://github.com/cloudflare/wrangler-action/issues/107
workerd (what's used for wrangler dev now in v3) is VERY limited. I know the team want to expand this, but I would recommend sticking with wrangler v2 for now if you want to run it on older operating systems - it should work fine.wranglerVersion: 3 to use 3.x today

nodemon --watch src --exec npm run devwrangler init --from-dash <WORKER NAME> to pull it down locally and develop with Wrangler. https://developers.cloudflare.com/workers/wrangler/commands/#initTherefore, it is recommended that you continue using the CLI.env.R2_BUCKETworkerdwranglerVersion: 3nodemon --watch src --exec npm run devwrangler init --from-dash <WORKER NAME>Therefore, it is recommended that you continue using the CLI.env.R2_BUCKET{
"watch": ["lib.rs", "src/"],
"ext": "rs"
}{
"name": "worker1",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev"
},
"dependencies": {
"wrangler": "^3.0.1"
}
}