Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: PostCSS plugin xxx requires PostCSS 8. #337

Closed
jarkin13 opened this issue Nov 25, 2020 · 1 comment
Closed

Error: PostCSS plugin xxx requires PostCSS 8. #337

jarkin13 opened this issue Nov 25, 2020 · 1 comment

Comments

@jarkin13
Copy link

I have tried removing each plugin to see if the errors lied in the plugins(ie: autoprefixer, postcss-nested, etc.)` and it always throws the following error

[dev:rollup] [!] (plugin postcss) Error: PostCSS plugin postcss-import requires PostCSS 8.
[dev:rollup] Migration guide for end-users:
[dev:rollup] https://github.com/postcss/postcss/wiki/PostCSS-8-for-end-users
[dev:rollup] src/_bundle/main.css
[dev:rollup] Error: PostCSS plugin postcss-import requires PostCSS 8.
[dev:rollup] Migration guide for end-users:
[dev:rollup] https://github.com/postcss/postcss/wiki/PostCSS-8-for-end-users
[dev:rollup]     at Processor.normalize (/Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/node_modules/postcss/lib/processor.es6:117:15)
[dev:rollup]     at new Processor (/Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/node_modules/postcss/lib/processor.es6:38:25)
[dev:rollup]     at postcss (/Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/node_modules/postcss/lib/postcss.es6:34:10)
[dev:rollup]     at /Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/dist/index.js:213:28
[dev:rollup]     at Generator.next (<anonymous>)
[dev:rollup]     at asyncGeneratorStep (/Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/dist/index.js:19:24)
[dev:rollup]     at _next (/Users/.../Workspace/gfe-builder/app/node_modules/rollup-plugin-postcss/dist/index.js:41:9)

Here is my package.json

{
  ...
  "dependencies": {
    "@rollup/plugin-commonjs": "^16.0.0",
    "autoprefixer": "^10.0.2",
    "path": "^0.12.7",
    "postcss-import": "^13.0.0",
    "rollup": "^2.33.3",
    "rollup-plugin-postcss": "^3.1.8",
    "tailwindcss": "^2.0.1"
  },
  "devDependencies": {
    "postcss": "^8.1.10"
  },
  "peerDependencies": {
    "postcss": "^8.1.10"
  }
}

Here is my rollup.config.js

import path from "path";
import commonjs from "@rollup/plugin-commonjs";
import postcss from "rollup-plugin-postcss";
import postcssImport from "postcss-import";
import postcssNested from "postcss-nested";
import autoprefixer from "autoprefixer";

export default {
  input: "index.js",
  output: {
    file: "dist/main.bundle.js",
    format: "iife",
  },
  plugins: [
    postcss({
      extract: true,
      // Or with custom file name, it will generate file relative to bundle.js in v3
      extract: path.resolve("dist/main.style.css"),
      plugins: [
        postcssImport(),
        postcssNested(),
        autoprefixer(),
      ],
    }),
    commonjs(),
  ],
};
@jarkin13 jarkin13 changed the title Any plugin I use with postcss throws an error Error: PostCSS plugin xxx requires PostCSS 8. Nov 26, 2020
@jarkin13
Copy link
Author

Nevermind I saw the ticket — and updated to "rollup-plugin-postcss": "https://github.com/isaacl/rollup-plugin-postcss"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant