Skip to content

Commit

Permalink
Keep iife small
Browse files Browse the repository at this point in the history
  • Loading branch information
jakearchibald committed Jan 5, 2021
1 parent 2f18843 commit 5fddd5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IndexedDB with usability.

This is a tiny (~1.08k brotli'd) library that mostly mirrors the IndexedDB API, but with small improvements that make a big difference to usability.
This is a tiny (~1.09k brotli'd) library that mostly mirrors the IndexedDB API, but with small improvements that make a big difference to usability.

1. [Installation](#installation)
1. [Changes](#changes)
Expand Down
2 changes: 2 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default async function ({ watch }) {
output: {
file: 'build/iife/index-min.js',
format: 'iife',
esModule: false,
name: 'idb',
},
});
Expand All @@ -58,6 +59,7 @@ export default async function ({ watch }) {
output: {
file: 'build/iife/with-async-ittr-min.js',
format: 'iife',
esModule: false,
name: 'idb',
},
});
Expand Down

0 comments on commit 5fddd5f

Please sign in to comment.