workers-sdk
workers-sdk copied to clipboard
๐ Feature Request: "atomic" wrangler pages deployment
Describe the solution
We currently use wrangler pages deploy ./assets '--project-name=...'
to deploy our site to the CloudFlare Pages. But, if we delete the file from the assets
directory locally and try to redeploy it, it is not deleted from the Pages.
For example:
.
โโโ assets/
โโโ test.txt
โโโ index.html
after deployment, test.txt
and index.html
are accessible from CloudFlare pages,
then we delete test.txt
.
โโโ assets/
โโโ index.html
After deploying the assets
directory, the file test.txt
is still accessible from the CloudFlare Pages.