Release v1.1.3
- 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`
// 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`