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 3333 "scripts" : {
3434 "build" : " rollup -c"
3535 },
36- "dependencies" : {
37- },
36+ "dependencies" : {},
3837 "peerDependencies" : {
3938 "react" : " ^17.0.2"
4039 },
5251 "lodash" : " ^4.17.21" ,
5352 "prop-types" : " ^15.7.2" ,
5453 "rollup" : " ^2.48.0" ,
54+ "rollup-plugin-import-css" : " ^2.0.1" ,
5555 "rollup-plugin-peer-deps-external" : " ^2.2.4" ,
5656 "rollup-plugin-typescript2" : " ^0.30.0" ,
5757 "typescript" : " ^4.2.4"
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import typescript from 'rollup-plugin-typescript2'
22import commonjs from '@rollup/plugin-commonjs'
33import external from 'rollup-plugin-peer-deps-external'
44import resolve from '@rollup/plugin-node-resolve'
5+ import css from 'rollup-plugin-import-css'
56import pkg from './package.json'
67export default {
78 input : 'src/index.ts' ,
@@ -20,6 +21,7 @@ export default {
2021 } ,
2122 ] ,
2223 plugins : [
24+ css ( ) ,
2325 external ( ) ,
2426 resolve ( ) ,
2527 typescript ( {
You can’t perform that action at this time.
0 commit comments