mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
Checking for file existence is unnecessary when cache contains entry.
14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
import output from './output'
|
|
import tag from './tag'
|
|
import demo from './demo'
|
|
import layout from './layout'
|
|
|
|
async function main () {
|
|
await output()
|
|
await tag()
|
|
await demo()
|
|
await layout()
|
|
}
|
|
|
|
main()
|