Releases: dkamyshov/ts-astroturf-tools
Releases · dkamyshov/ts-astroturf-tools
v0.15.0
Made ts-astroturf-tools
work with the latest versions of webpack
and astroturf
. Check README.md for more info.
For compatibility with astroturf@>=0.9 <=1
, use ts-astroturf-tools@<=0.14.3
.
v0.14.0
enhanced-resolve
is now used to resolve modules. Developers may now import stuff from other packages:
import { xcss } from 'ts-astroturf-tools/xcss';
import { colors } from 'external-package/colors';
const Button = styled.button`
color: ${colors.RED};
`;
v0.13.0
Composition via styled
function is now available:
import styled from 'astroturf';
const Button = styled.button`
background: blue;
`;
const CoolerButton = styled(Button)`
color: red;
`;
v0.12.0
"Direct mode" is now referred to as "linaria mode".
v0.11.0
typescript
is now a peer dependency.