Releases: vanilla-extract-css/vanilla-extract
Releases · vanilla-extract-css/vanilla-extract
@vanilla-extract/[email protected]
Patch Changes
- #208
a1c79fcThanks @markdalgleish! - Deprecate redundantallowRuntimeoption
@vanilla-extract/[email protected]
Minor Changes
-
#206
64c18f9Thanks @mattcompiles! - AdddisableRuntimeStylesentrypointIn testing environments (like
jsdom) vanilla-extract will create and insert styles. While this is often desirable, it can be a major slowdown in your tests. If your tests don't require styles to be available, thedisableRuntimeStylesimport will disable all style creation.// setupTests.ts import '@vanilla-extract/css/disableRuntimeStyles';
@vanilla-extract/[email protected]
Patch Changes
- #204
16f77efThanks @markdalgleish! - Ensure:where/:isselectors are supported when validating scoped selectors
@vanilla-extract/[email protected]
Patch Changes
- #195
1099b34Thanks @mattcompiles! - Fix issue when @vanilla-extract/webpack-plugin is nested within a separate node_modules folder
@vanilla-extract/[email protected]
Minor Changes
-
#183
6721228Thanks @Brendan-csel! - AddprocessCssplugin option to allow further processing of CSS while bundling.Example for postcss with autoprefixer:
const { vanillaExtractPlugin } = require('@vanilla-extract/esbuild-plugin'); const postcss = require('postcss'); const autoprefixer = require('autoprefixer'); async function processCss(css) { const result = await postcss([autoprefixer]).process(css, { from: undefined /* suppress source map warning */, }); return result.css; } require('esbuild') .build({ entryPoints: ['app.ts'], bundle: true, plugins: [ vanillaExtractPlugin({ processCss, }), ], outfile: 'out.js', }) .catch(() => process.exit(1));
@vanilla-extract/[email protected]
Patch Changes
- #181
7a63af8Thanks @mattcompiles! - Fix issue where CSS can be duplicated in some scenarios
@vanilla-extract/[email protected]
Patch Changes
- #176
cbfe0deThanks @mattcompiles! - Continue searching for package.json if one is found with no name
@vanilla-extract/[email protected]
Major Changes
- #171
84a8611Thanks @mattcompiles! - Release v1
Patch Changes
- Updated dependencies [
84a8611]:- @vanilla-extract/[email protected]
@vanilla-extract/[email protected]
Major Changes
- #171
84a8611Thanks @mattcompiles! - Release v1
Patch Changes
- Updated dependencies [
84a8611]:- @vanilla-extract/[email protected]
@vanilla-extract/[email protected]
Patch Changes
- Updated dependencies [
84a8611]:- @vanilla-extract/[email protected]