Skip to content

Commit

Permalink
chore: latest wrangler (#42)
Browse files Browse the repository at this point in the history
* chore: support wrangler 3.53.1+

* chore: update wrangler config to today
  • Loading branch information
webbertakken committed May 3, 2024
1 parent 9a72604 commit aa4fa8d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/.idea
/dist
/.yarn/
/.wrangler/

# Test coverage
/coverage
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ yarn install
#### Deploy the worker

```bash
wrangler publish
yarn deploy
```

#### Set up a webhook
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"private": true,
"main": "src/index.ts",
"scripts": {
"deploy": "wrangler publish src/index.ts",
"dev": "wrangler dev src/index.ts --local",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"test": "vitest",
"coverage": "vitest --coverage"
},
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "email-worker"
main = "./src/index.ts"
compatibility_date = "2023-02-25"
compatibility_date = "2024-05-03"

0 comments on commit aa4fa8d

Please sign in to comment.