We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3aecd2 commit 600aa7aCopy full SHA for 600aa7a
rollup.config.js
@@ -4,7 +4,8 @@ import typescript from "@rollup/plugin-typescript";
4
import del from "rollup-plugin-delete";
5
import svgr from "@svgr/rollup";
6
import commonjs from "@rollup/plugin-commonjs";
7
-import css from "rollup-plugin-import-css";
+import postcss from "rollup-plugin-postcss";
8
+import { eslint } from "rollup-plugin-eslint";
9
10
export default [
11
// CommonJS
@@ -37,7 +38,14 @@ export default [
37
38
"node_modules/react-is/index.js": ["isFragment", "useMemo", "isMemo"]
39
}
40
}),
- css()
41
+ postcss({
42
+ extensions: [".css"]
43
+ }),
44
+ eslint({
45
+ exclude: [
46
+ "src/**"
47
+ ]
48
49
],
50
external: ["lodash"]
51
},
0 commit comments