-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #17242 - Change type imports from `postcss` package to match new `postcss` export structure - Change `cssnano-simple` plugin type to `OldPlugin` since the `Plugin` type now represents PostCSS 8 plugin - Call postcss directly instead of plugin `process` method; `process` usage seems discouraged as PostCSS removed it from the plugin type definition
- Loading branch information
1 parent
f06c589
commit 3ea3b6e
Showing
6 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
packages/next/build/webpack/config/blocks/css/loaders/global.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/next/build/webpack/config/blocks/css/loaders/modules.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5353,6 +5353,11 @@ color@^3.0.0: | |
color-convert "^1.9.1" | ||
color-string "^1.5.2" | ||
|
||
colorette@^1.2.1: | ||
version "1.2.1" | ||
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" | ||
integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== | ||
|
||
colormin@^1.0.5: | ||
version "1.1.2" | ||
resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" | ||
|
@@ -10355,6 +10360,14 @@ [email protected]: | |
version "0.0.3" | ||
resolved "https://registry.yarnpkg.com/limit-spawn/-/limit-spawn-0.0.3.tgz#cc09c24467a0f0a1ed10a5196dba597cad3f65dc" | ||
|
||
line-column@^1.0.2: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" | ||
integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI= | ||
dependencies: | ||
isarray "^1.0.0" | ||
isobject "^2.0.0" | ||
|
||
lines-and-columns@^1.1.6: | ||
version "1.1.6" | ||
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" | ||
|
@@ -11364,6 +11377,11 @@ [email protected]: | |
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.0.3.tgz#dde999e173bc9d7bd2ee2746b89909ade98e075e" | ||
|
||
nanoid@^3.1.12: | ||
version "3.1.12" | ||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654" | ||
integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A== | ||
|
||
nanomatch@^1.2.9: | ||
version "1.2.13" | ||
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" | ||
|
@@ -13466,6 +13484,16 @@ [email protected], postcss@^7.0.32: | |
source-map "^0.6.1" | ||
supports-color "^6.1.0" | ||
|
||
[email protected]: | ||
version "8.1.1" | ||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.1.1.tgz#c3a287dd10e4f6c84cb3791052b96a5d859c9389" | ||
integrity sha512-9DGLSsjooH3kSNjTZUOt2eIj2ZTW0VI2PZ/3My+8TC7KIbH2OKwUlISfDsf63EP4aiRUt3XkEWMWvyJHvJelEg== | ||
dependencies: | ||
colorette "^1.2.1" | ||
line-column "^1.0.2" | ||
nanoid "^3.1.12" | ||
source-map "^0.6.1" | ||
|
||
postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.2.16: | ||
version "5.2.18" | ||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" | ||
|