Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed Jul 16, 2024
1 parent 0373ff4 commit 650d8ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions packages/docs/docs/guide/pipes/cache-buster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import { cacheBuster } from "@assetpack/core/cacheBuster";

export default {
...
pipes: {
pipes: [
...
// make sure these pipes are added after plugins that generate files
cacheBuster(),
},
],
};
```

Expand All @@ -50,12 +50,12 @@ import { spineAtlasCacheBuster } from "@assetpack/core/spine";

export default {
...
pipes: {
pipes: [
...
// make sure these pipes are added after plugins that generate files
cacheBuster(),
texturePackerCacheBuster(),
spineAtlasCacheBuster(),
},
],
};
```
4 changes: 2 additions & 2 deletions packages/docs/docs/guide/pipes/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import { json } from "@assetpack/core/json";

export default {
...
pipes: {
pipes: [
...
json(),
},
],
};
```
4 changes: 2 additions & 2 deletions packages/docs/docs/guide/pipes/manifest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { pixiManifest } from "@assetpack/core/manifest";

export default {
...
pipes: {
pipes: [
...
// These options are the default values, all options shown here are optional
// This should be the last pipe in the list
Expand All @@ -41,7 +41,7 @@ export default {
trimExtensions: false,
includeMetaData: true,
})
},
],
};
```

Expand Down

0 comments on commit 650d8ff

Please sign in to comment.