Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Jan 6, 2025
1 parent 9c832fe commit 0125a15
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions apps/picsa-tools/resources-tool/src/assets/resources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Hardcoded Resources

Files in this folder can be hardcoded into every build. If updating should populate via

```sh
yarn ts-node tools/workflows/populateResourceContents.ts --skip-nx-cache
```

## Previewing Changes

By default resources only update on new version release. This can temporarily be bypassed by commenting out the corresponding service code

```ts
const assetsCacheVersion = this.getAssetResourcesVersion();
if (assetsCacheVersion === APP_VERSION.number) {
return;
}
```

0 comments on commit 0125a15

Please sign in to comment.