mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-25 15:07:17 +02:00
feat(v2): introduce new minification of CSS bundle (#3716)
* feat(v2): optimize CSS bundle * Move to separate preset * Move custom scrollbar styles to separate class * Cleanup styles * Remove unactual styles * Various CSS optimizations, cleanup styles for NProgress * Add ability to back to old way of minifying CSS * chore(v2): downgrade babel-plugin-dynamic-import-node to 2.3.0 * Use env var for back to simple CSS minifier * remove unnecessary typing [skip-ci] * Remove missing dep * Update website/docs/cli.md Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com>
This commit is contained in:
parent
9afe4b5447
commit
487a9f98e4
20 changed files with 386 additions and 107 deletions
|
@ -0,0 +1,33 @@
|
|||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
const path = require('path');
|
||||
const vfile = require('to-vfile');
|
||||
const postcss = require('postcss');
|
||||
const postCssRemoveOverriddenCustomProperties = require('../index');
|
||||
|
||||
const processFixture = (name) => {
|
||||
const input = vfile.readSync(
|
||||
path.join(__dirname, 'fixtures', `${name}.css`),
|
||||
'utf8',
|
||||
);
|
||||
const output = postcss([postCssRemoveOverriddenCustomProperties]).process(
|
||||
input,
|
||||
);
|
||||
|
||||
return output.css;
|
||||
};
|
||||
|
||||
describe('remove-overridden-custom-properties', () => {
|
||||
test('overridden custom properties should be removed', () => {
|
||||
expect(processFixture('normal')).toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('overridden custom properties with `!important` rule should not be removed', () => {
|
||||
expect(processFixture('important_rule')).toMatchSnapshot();
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue