cssnano 5.0.0-rc.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +6 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,47 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.2](https://github.com/cssnano/cssnano/compare/cssnano@5.0.0...cssnano@5.0.2) (2021-04-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cssnano:** replace opencollective with funding field. ([#1047](https://github.com/cssnano/cssnano/issues/1047)) ([3dee7c5](https://github.com/cssnano/cssnano/commit/3dee7c553350e43ad0750a9478a63cf897e5510f)), closes [#1046](https://github.com/cssnano/cssnano/issues/1046)
12
+
13
+
14
+
15
+
16
+
17
+ ## [5.0.1](https://github.com/cssnano/cssnano/compare/cssnano@5.0.0...cssnano@5.0.1) (2021-04-13)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cssnano:** replace opencollective with funding field. ([#1047](https://github.com/cssnano/cssnano/issues/1047)) ([3dee7c5](https://github.com/cssnano/cssnano/commit/3dee7c553350e43ad0750a9478a63cf897e5510f)), closes [#1046](https://github.com/cssnano/cssnano/issues/1046)
23
+
24
+
25
+
26
+
27
+
28
+ # [5.0.0](https://github.com/cssnano/cssnano/compare/cssnano@5.0.0-rc.2...cssnano@5.0.0) (2021-04-06)
29
+
30
+ **Note:** Version bump only for package cssnano
31
+
32
+
33
+
34
+
35
+
36
+ # [5.0.0-rc.2](https://github.com/cssnano/cssnano/compare/cssnano@5.0.0-rc.1...cssnano@5.0.0-rc.2) (2021-03-15)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * update SVGO ([aa07cfd](https://github.com/cssnano/cssnano/commit/aa07cfd62c82ed4b1e87219eea8d0ed99635e4ca))
42
+
43
+
44
+
45
+
46
+
6
47
  # [5.0.0-rc.1](https://github.com/cssnano/cssnano/compare/cssnano@5.0.0-rc.0...cssnano@5.0.0-rc.1) (2021-03-04)
7
48
 
8
49
  **Note:** Version bump only for package cssnano
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "cssnano",
3
- "version": "5.0.0-rc.1",
3
+ "version": "5.0.2",
4
4
  "description": "A modular minifier, built on top of the PostCSS ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
7
7
  "bundle-size": "webpack --json --config src/__tests__/_webpack.config.js | webpack-bundle-size-analyzer",
8
8
  "prebuild": "del-cli dist",
9
9
  "build": "cross-env BABEL_ENV=publish babel src --config-file ../../babel.config.js --out-dir dist --ignore \"**/__tests__/\"",
10
- "prepublish": "yarn build",
11
- "postinstall": "opencollective-postinstall"
10
+ "prepublish": "yarn build"
12
11
  },
13
- "collective": {
12
+ "funding": {
14
13
  "type": "opencollective",
15
14
  "url": "https://opencollective.com/cssnano"
16
15
  },
@@ -26,9 +25,8 @@
26
25
  "license": "MIT",
27
26
  "dependencies": {
28
27
  "cosmiconfig": "^7.0.0",
29
- "cssnano-preset-default": "^5.0.0-rc.1",
30
- "is-resolvable": "^1.1.0",
31
- "opencollective-postinstall": "^2.0.2"
28
+ "cssnano-preset-default": "^5.0.1",
29
+ "is-resolvable": "^1.1.0"
32
30
  },
33
31
  "homepage": "https://github.com/cssnano/cssnano",
34
32
  "author": {
@@ -56,5 +54,5 @@
56
54
  "peerDependencies": {
57
55
  "postcss": "^8.2.1"
58
56
  },
59
- "gitHead": "114efb0092fff944dd4c8a28d184add24d8fde3e"
57
+ "gitHead": "a2245fcbf5094c9793158d76955d83122d7aef39"
60
58
  }