This repository was archived by the owner on Feb 28, 2022. It is now read-only.
v3.2.0
New
- A block could be defined as critical in SASS files by using
@critical { ... }. - Image could be converted to WebP by adding
webp: trueto settings of tasks. - Lint task exits now with error code, useful in CI/CD context.
- New flags to deactivate favicon and lint tasks:
--no-faviconand--no-lint. - Sourcemaps works now! Add
--sourcemapsor--sourcemap-filesto the command line. - New
typescripttasks to package TypeScript files.
Improvement
- Update packages to the last versions.
- Remove and replace packages to have the least possible.
- Load only necessary modules and display the progression.
- Replace
node-sassbydart-sassto take advantage of the latest updates. - Sort files when sizes were displayed.
- Replace deprecated UglifyJS by Terser.
- Replace deprecated TSLint by ESLint.
- Webpack works when more than one task is defined.
Breaking changes
critical: thisis not longer propagate to its children (it works only in main file), it was replace by@critical
rule.