From 5b3b6242a3d9c2a1d424e000e1f078e06c43643b Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 15 Jun 2021 16:04:46 +0800 Subject: [PATCH 1/5] chore: v3.2.2 changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d67827e..9fdf928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [3.2.2](https://github.com/vuejs/component-compiler-utils/compare/v3.2.1...v3.2.2) (2021-06-15) + + +### Reverts + +* Revert "fix: patch postcss 7 and bundle it in the published npm package (#111)" ([a9e3afd](https://github.com/vuejs/component-compiler-utils/commit/a9e3afd052856edbcccc0baf8355eb6088e10eaf)), closes [#111](https://github.com/vuejs/component-compiler-utils/issues/111) + +### Bug Fixes + +* Bump postcss version ([2af0c54](https://github.com/vuejs/component-compiler-utils/commit/2af0c546e15b18d0977477e7f45007c1614edd14)) + + ## [3.2.1](https://github.com/vuejs/component-compiler-utils/compare/v3.2.0...v3.2.1) (2021-06-09) From 26de735854a7288d704a606a054bff51f7d7307f Mon Sep 17 00:00:00 2001 From: JounQin Date: Tue, 26 Oct 2021 15:32:45 +0800 Subject: [PATCH 2/5] chore: support prettier v2 (#89) --- package.json | 2 +- yarn.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1887394..6b2024b 100644 --- a/package.json +++ b/package.json @@ -66,6 +66,6 @@ "vue-template-es2015-compiler": "^1.9.0" }, "optionalDependencies": { - "prettier": "^1.18.2" + "prettier": "^1.18.2 || ^2.0.0" } } diff --git a/yarn.lock b/yarn.lock index 994b27c..c2da184 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4040,7 +4040,7 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= -prettier@^1.18.2: +"prettier@^1.18.2 || ^2.0.0": version "1.19.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== From 3a715a30e9cf8f6d94a45bb1a68d89629546f6e9 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 26 Oct 2021 15:38:58 +0800 Subject: [PATCH 3/5] chore: lockfile maintenance --- yarn.lock | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/yarn.lock b/yarn.lock index c2da184..919f2b3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3954,6 +3954,11 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + picomatch@^2.0.4, picomatch@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" @@ -4026,14 +4031,13 @@ postcss-selector-parser@^6.0.2: indexes-of "^1.0.1" uniq "^1.0.1" -postcss@^7.0.14: - version "7.0.32" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" - integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== +postcss@^7.0.36: + version "7.0.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== dependencies: - chalk "^2.4.2" + picocolors "^0.2.1" source-map "^0.6.1" - supports-color "^6.1.0" prelude-ls@~1.1.2: version "1.1.2" From 27e4fa359d77d28b73a66089ce781e0a03962277 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 26 Oct 2021 15:40:53 +0800 Subject: [PATCH 4/5] 3.3.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6b2024b..69e4faa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vue/component-compiler-utils", - "version": "3.2.2", + "version": "3.3.0", "description": "Lower level utilities for compiling Vue single file components", "main": "dist/index.js", "typings": "dist/index.d.ts", From 82a37174990e31eaec609887a0ec262f06b454dd Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 26 Oct 2021 15:43:05 +0800 Subject: [PATCH 5/5] chore: v3.3.0 changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fdf928..f39ab75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [3.3.0](https://github.com/vuejs/component-compiler-utils/compare/v3.2.2...v3.3.0) (2021-10-26) + +### New Feature + +* allow prettier v2 to be the optional dependency ([#89](https://github.com/vuejs/component-compiler-utils/pull/89)) ([cab504f](https://github.com/vuejs/component-compiler-utils/commit/26de735854a7288d704a606a054bff51f7d7307f)) + + ## [3.2.2](https://github.com/vuejs/component-compiler-utils/compare/v3.2.1...v3.2.2) (2021-06-15)