Skip to content

1.5.2

Compare
Choose a tag to compare
@brianreavis brianreavis released this 22 Aug 17:25
· 111 commits to master since this release
  • TileStrata will now ignore any falsy values passed to .use() instead of throwing an error. This makes conditional plugins in configs a lot cleaner / simpler:
.layer('mylayer').route('t.png').use(cacheEnabled && disk.cache(...))
.layer('mylayer').route('t.png').use(null)
.layer('mylayer').route('t.png').use()
// etc