dkamyshov / ts-astroturf-tools

TypeScript tools that enhance astroturf.
10 stars 1 forks source link

Use 'enhanced-resolve' to resolve imported modules #11

Closed dkamyshov closed 5 years ago

dkamyshov commented 5 years ago

Current implementation of resolver does not allow importing modules from other packages:

// this will fail
import { xcss } from 'ts-astroturf-tools/xcss';
import { colors } from 'another-package/colors';

const someClassName = xcss`
  color: ${colors.RED};
`;
dkamyshov commented 5 years ago

addressed in v0.14.0