File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
33
"scripts" : {
34
34
"build" : " rollup -c"
35
35
},
36
- "dependencies" : {
37
- },
36
+ "dependencies" : {},
38
37
"peerDependencies" : {
39
38
"react" : " ^17.0.2"
40
39
},
52
51
"lodash" : " ^4.17.21" ,
53
52
"prop-types" : " ^15.7.2" ,
54
53
"rollup" : " ^2.48.0" ,
54
+ "rollup-plugin-import-css" : " ^2.0.1" ,
55
55
"rollup-plugin-peer-deps-external" : " ^2.2.4" ,
56
56
"rollup-plugin-typescript2" : " ^0.30.0" ,
57
57
"typescript" : " ^4.2.4"
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import typescript from 'rollup-plugin-typescript2'
2
2
import commonjs from '@rollup/plugin-commonjs'
3
3
import external from 'rollup-plugin-peer-deps-external'
4
4
import resolve from '@rollup/plugin-node-resolve'
5
+ import css from 'rollup-plugin-import-css'
5
6
import pkg from './package.json'
6
7
export default {
7
8
input : 'src/index.ts' ,
@@ -20,6 +21,7 @@ export default {
20
21
} ,
21
22
] ,
22
23
plugins : [
24
+ css ( ) ,
23
25
external ( ) ,
24
26
resolve ( ) ,
25
27
typescript ( {
You can’t perform that action at this time.
0 commit comments