mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 04:40:39 -07:00
BREAKING CHANGE: remove default export, now should be used like import
{Liquid} from 'liquidjs'
14 lines
225 B
TypeScript
14 lines
225 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()
|