Skip to content

Release v1.1.3

Choose a tag to compare

@morganney morganney released this 13 Sep 00:07
2d6ea78
  • Fixes a bug where imports inside strings were not ignored.
    // This will be ignored
    const str = 'abc123 import("some/path")~xyz'
    
    // This will not be ignored (any string with a '$')
    const tmplStr = `abc123~${import('some/module')}~xyz`