mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
fix(#108): remove absolute path in emitted d.ts
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import * as chai from 'chai'
|
||||
|
||||
const expect = chai.expect
|
||||
const lexical = require('src/parser/lexical')
|
||||
const lexical = require('../../../src/parser/lexical')
|
||||
|
||||
describe('lexical', function () {
|
||||
it('should test range literal', function () {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { expect } from 'chai'
|
||||
import Tokenizer from 'src/parser/tokenizer'
|
||||
import TagToken from 'src/parser/tag-token'
|
||||
import OutputToken from 'src/parser/output-token'
|
||||
import HTMLToken from 'src/parser/html-token'
|
||||
import Tokenizer from '../../../src/parser/tokenizer'
|
||||
import TagToken from '../../../src/parser/tag-token'
|
||||
import OutputToken from '../../../src/parser/output-token'
|
||||
import HTMLToken from '../../../src/parser/html-token'
|
||||
|
||||
describe('tokenizer', function () {
|
||||
const tokenizer = new Tokenizer()
|
||||
|
||||
Reference in New Issue
Block a user