Skip to content

Commit

Permalink
Docs: simplify example
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoborus committed May 27, 2021
1 parent a29c4f0 commit 8bf54fa
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<h1 align="center">deno-buckets</h1>
<h1 align="center">Asset bundler for Deno apps</h1>

<p align="center">
<img src="https://raw.githubusercontent.com/jacoborus/deno-buckets/main/example/deno-bucket-logo.svg" alt="deno-buckets logo"><br>
<b>Asset bundler for Deno apps</b><br>
<b>deno-buckets</b><br>
</p>
<p align="center">

Expand Down Expand Up @@ -54,17 +54,16 @@ export default {
key: "my-key",
entry: "app.ts",
buckets: [
{
name: "data",
folder: "countries",
},
{
name: "mustaches",
folder: "assets/mustaches/templates",
exts: [".template"],
trimExtensions: true,
},
{
name: "data",
folder: "countries",
exts: [".txt"],
},
],
output: "app.bundle.js",
};
Expand Down Expand Up @@ -107,7 +106,7 @@ await bundle(conf);
- [x] Remove extensions
- [x] Custom decoders
- [x] Docs
- [ ] Logo
- [x] Logo
- [ ] CI
- [ ] Release
- [ ] Return nicer errors
Expand Down

0 comments on commit 8bf54fa

Please sign in to comment.