Skip to content

Commit

Permalink
Publish cssnano 5.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ludofischer committed Nov 16, 2021
1 parent a702cf4 commit 221f72e
Show file tree
Hide file tree
Showing 16 changed files with 69 additions and 31 deletions.
11 changes: 9 additions & 2 deletions packages/cssnano-preset-advanced/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.1.7 (2021-11-16)

### Bug fixes

- c38f14c3ce3d0b: **postcss-normalize-url**: avoid changing parameter encoding

### Chore
- 31d5c07dc07a4: refactor: drop one-liner dependencies
- 07172825ffbb4f4: **postcss-merge-longhand**: drop css-color-names dependency

# 5.1.6 (2021-11-05)

Expand Down
4 changes: 2 additions & 2 deletions packages/cssnano-preset-advanced/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-preset-advanced",
"version": "5.1.6",
"version": "5.1.7",
"main": "dist/index.js",
"description": "Advanced optimisations for cssnano; may or may not break your CSS!",
"scripts": {
Expand All @@ -15,7 +15,7 @@
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.3.7",
"cssnano-preset-default": "^5.1.6",
"cssnano-preset-default": "^5.1.7",
"postcss-discard-unused": "^5.0.1",
"postcss-merge-idents": "^5.0.1",
"postcss-reduce-idents": "^5.0.1",
Expand Down
12 changes: 10 additions & 2 deletions packages/cssnano-preset-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.1.7 (2021-11-16)

### Bug fixes

- c38f14c3ce3d0b: **postcss-normalize-url**: avoid changing parameter encoding

### Chore

- 31d5c07dc07a4: refactor: drop one-liner dependencies
- 07172825ffbb4f4: **postcss-merge-longhand**: drop css-color-names dependency

# 5.1.6 (2021-11-05)

Expand Down
12 changes: 6 additions & 6 deletions packages/cssnano-preset-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-preset-default",
"version": "5.1.6",
"version": "5.1.7",
"main": "dist/index.js",
"description": "Safe defaults for cssnano which require minimal configuration.",
"scripts": {
Expand All @@ -23,11 +23,11 @@
"postcss-discard-duplicates": "^5.0.1",
"postcss-discard-empty": "^5.0.1",
"postcss-discard-overridden": "^5.0.1",
"postcss-merge-longhand": "^5.0.3",
"postcss-merge-rules": "^5.0.2",
"postcss-merge-longhand": "^5.0.4",
"postcss-merge-rules": "^5.0.3",
"postcss-minify-font-values": "^5.0.1",
"postcss-minify-gradients": "^5.0.3",
"postcss-minify-params": "^5.0.1",
"postcss-minify-params": "^5.0.2",
"postcss-minify-selectors": "^5.1.0",
"postcss-normalize-charset": "^5.0.1",
"postcss-normalize-display-values": "^5.0.1",
Expand All @@ -36,13 +36,13 @@
"postcss-normalize-string": "^5.0.1",
"postcss-normalize-timing-functions": "^5.0.1",
"postcss-normalize-unicode": "^5.0.1",
"postcss-normalize-url": "^5.0.2",
"postcss-normalize-url": "^5.0.3",
"postcss-normalize-whitespace": "^5.0.1",
"postcss-ordered-values": "^5.0.2",
"postcss-reduce-initial": "^5.0.1",
"postcss-reduce-transforms": "^5.0.1",
"postcss-svgo": "^5.0.3",
"postcss-unique-selectors": "^5.0.1"
"postcss-unique-selectors": "^5.0.2"
},
"author": {
"name": "Ben Briggs",
Expand Down
12 changes: 10 additions & 2 deletions packages/cssnano/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.11 (2021-11-16)

### Bug fixes

- c38f14c3ce3d0: **postcss-normalize-url**: avoid changing parameter encoding

### Chore

- 31d5c07dc07a4: refactor: drop one-liner dependencies
- 07172825ffbb4f4: **postcss-merge-longhand**: drop css-color-names dependency

# 5.1.10 (2021-11-05)

Expand Down
4 changes: 2 additions & 2 deletions packages/cssnano/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano",
"version": "5.0.10",
"version": "5.0.11",
"description": "A modular minifier, built on top of the PostCSS ecosystem.",
"main": "dist/index.js",
"scripts": {
Expand All @@ -26,7 +26,7 @@
"dependencies": {
"lilconfig": "^2.0.3",
"yaml": "^1.10.2",
"cssnano-preset-default": "^5.1.6",
"cssnano-preset-default": "^5.1.7",
"is-resolvable": "^1.1.0"
},
"homepage": "https://github.com/cssnano/cssnano",
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-merge-longhand/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.4

### Chore

- 07172825ffbb4f4: **postcss-merge-longhand**: drop css-color-names dependency

# [5.0.3]

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-merge-longhand/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-merge-longhand",
"version": "5.0.3",
"version": "5.0.4",
"description": "Merge longhand properties into shorthand with PostCSS.",
"main": "dist/index.js",
"files": [
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-merge-rules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.3 (2021-11-16)

### Chore

- 31d5c07dc07a4: refactor: drop one-liner dependencies

## 5.0.2 (2021-05-28)

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-merge-rules/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-merge-rules",
"version": "5.0.2",
"version": "5.0.3",
"description": "Merge CSS rules with PostCSS.",
"main": "dist/index.js",
"files": [
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-minify-params/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.2 (2021-11-16)

### Chore

- 31d5c07dc07a4: refactor: drop one-liner dependencies

## [5.0.1](https://github.com/cssnano/cssnano/compare/postcss-minify-params@5.0.0...postcss-minify-params@5.0.1) (2021-05-19)

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-minify-params/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-minify-params",
"version": "5.0.1",
"version": "5.0.2",
"description": "Minify at-rule params with PostCSS",
"keywords": [
"postcss",
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-normalize-url/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.3 (2021-11-16)

### Bug fixes

- c38f14c3ce3d0b: **postcss-normalize-url**: avoid changing parameter encoding

# 5.0.2 (2021-06-09)

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-normalize-url/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-normalize-url",
"version": "5.0.2",
"version": "5.0.3",
"description": "Normalize URLs with PostCSS",
"main": "dist/index.js",
"files": [
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-unique-selectors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 5.0.2 (2021-11-16)

### Chore

- 31d5c07dc07a4: refactor: drop one-liner dependencies

## [5.0.1](https://github.com/cssnano/cssnano/compare/postcss-unique-selectors@5.0.0...postcss-unique-selectors@5.0.1) (2021-05-19)

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-unique-selectors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-unique-selectors",
"version": "5.0.1",
"version": "5.0.2",
"description": "Ensure CSS selectors are unique.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 221f72e

Please sign in to comment.