Skip to content

Commit

Permalink
Remove redundant wrangler dev script arg
Browse files Browse the repository at this point in the history
From the wrangler docs:
“Only required if your wrangler.toml does not include a main key”
Source:
https://developers.cloudflare.com/workers/wrangler/commands/#dev
  • Loading branch information
acusti committed Jul 19, 2024
1 parent 6e3f404 commit 07ba7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"deploy": "wrangler deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler dev ./worker.ts",
"start": "wrangler dev",
"typegen": "wrangler types",
"typecheck": "tsc"
},
Expand Down

0 comments on commit 07ba7c1

Please sign in to comment.