mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 20:30:39 -07:00
fix: break/continue omitting output before them, #123
BREAKING CHANGE: remove default export, now should be used like import
{Liquid} from 'liquidjs'
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import Token from './token'
|
||||
import { Token } from './token'
|
||||
|
||||
export default class HTMLToken extends Token {
|
||||
export class HTMLToken extends Token {
|
||||
public constructor (str: string, input: string, line: number, col: number, file?: string) {
|
||||
super(str, input, line, col, file)
|
||||
this.type = 'html'
|
||||
|
||||
Reference in New Issue
Block a user