New features
Webpack loader (#530)
The first cut of @compiled/webpack-loader
is now available. This will improve local developer experience when working with Webpack when your imports have been statically evaluated into your CSS. See #344 for background.
npm install @compiled/webpack-loader --save-dev
module.exports = {
module: {
rules: [
{
test: /\.(js|ts|tsx)$/,
exclude: /node_modules/,
use: [
{ loader: 'babel-loader' },
{
loader: '@compiled/webpack-loader',
},
],
},
],
},
};
See Installation docs for more information. There will be bugs - found one? Raise an issue.
Chores
- Dependencies have been upgraded to latest