mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 14:00:39 -07:00
fix(#108): remove absolute path in emitted d.ts
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { isNil, isString } from 'src/util/underscore'
|
||||
import { isDrop } from 'src/drop/idrop'
|
||||
import { EmptyDrop } from 'src/drop/empty-drop'
|
||||
import { isNil, isString } from '../util/underscore'
|
||||
import { isDrop } from '../drop/idrop'
|
||||
import { EmptyDrop } from '../drop/empty-drop'
|
||||
|
||||
export class BlankDrop extends EmptyDrop {
|
||||
equals (value: any) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Drop } from './drop'
|
||||
import { IComparable } from './icomparable'
|
||||
import { isObject, isString, isArray } from 'src/util/underscore'
|
||||
import { IDrop } from 'src/drop/idrop'
|
||||
import { isObject, isString, isArray } from '../util/underscore'
|
||||
import { IDrop } from '../drop/idrop'
|
||||
|
||||
export class EmptyDrop extends Drop implements IDrop, IComparable {
|
||||
equals (value: any) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { isFunction } from 'src/util/underscore'
|
||||
import { isFunction } from '../util/underscore'
|
||||
|
||||
export interface IComparable {
|
||||
equals: (rhs: any) => boolean
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
import { Drop } from './drop'
|
||||
import { isFunction } from 'src/util/underscore'
|
||||
import { isFunction } from '../util/underscore'
|
||||
|
||||
export interface IDrop {
|
||||
value(): any
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { Drop } from './drop'
|
||||
import { IComparable } from './icomparable'
|
||||
import { isNil } from 'src/util/underscore'
|
||||
import { IDrop, isDrop } from 'src/drop/idrop'
|
||||
import { BlankDrop } from 'src/drop/blank-drop'
|
||||
import { isNil } from '../util/underscore'
|
||||
import { IDrop, isDrop } from '../drop/idrop'
|
||||
import { BlankDrop } from '../drop/blank-drop'
|
||||
|
||||
export class NullDrop extends Drop implements IDrop, IComparable {
|
||||
equals (value: any) {
|
||||
|
||||
Reference in New Issue
Block a user