Alec Larson
Alec Larson
The `@saus/cloudformation` package needs to empty S3 buckets before deleting them. Saus Deploy definitely needs confirmation prompts before doing such destructive actions, though.
If you change the `region` of a `@saus/cloudformation` stack, it will try creating a request policy that already exists. This is because the deploy target's cache key is tied to...
The `debug` package is 10.7kB (too big!) We can reduce its size impact by 88+% if we copy [`@wbe/debug`](https://github.com/willybrauner/debug) into Saus core and tweak it slightly to avoid the runtime...
```ts if (process.server) { // Do something on server-side only. } if (process.client) { // Do something in web browser only. } ``` (inspired by Nuxt)
When a deploy hook has its `explode` method defined, it can derive multiple targets from its props/state. ```ts // Must return an array of objects. explode({ files }) { //...
A simple string replace of `import.meta.env` access should be done before the content hash is computed.
The SSR bundle already loads in secrets from the `deployed` branch of the git repository. At build time, we can replace the `defineSecrets` call with an object that references the...