Skip to content

Releases: dkamyshov/ts-astroturf-tools

v0.16.0

30 Jan 21:33
Compare
Choose a tag to compare

Upgrade dependencies.

v0.15.0

16 Oct 20:41
Compare
Choose a tag to compare

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

08 Nov 22:26
Compare
Choose a tag to compare

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

08 Nov 22:29
Compare
Choose a tag to compare

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

08 Nov 22:30
Compare
Choose a tag to compare

"Direct mode" is now referred to as "linaria mode".

v0.11.0

08 Nov 22:31
Compare
Choose a tag to compare

typescript is now a peer dependency.