File tree 2 files changed +35
-2
lines changed
2 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 15
15
"publishConfig" : {
16
16
"access" : " public"
17
17
},
18
+ "dependencies" : {},
18
19
"devDependencies" : {
19
20
"@leafygreen-ui/emotion" : " workspace:^" ,
20
21
"@leafygreen-ui/lib" : " workspace:^" ,
22
+ "@rollup/plugin-url" : " 8.0.2" ,
21
23
"polished" : " ^4.2.2"
22
24
},
23
25
"gitHead" : " dd71a2d404218ccec2e657df9c0263dc1c15b9e0" ,
28
30
},
29
31
"bugs" : {
30
32
"url" : " https://jira.mongodb.org/projects/PD/summary"
31
- },
32
- "dependencies" : {}
33
+ }
33
34
}
Original file line number Diff line number Diff line change
1
+ import urlPlugin from '@rollup/plugin-url' ;
2
+ import {
3
+ esmConfig ,
4
+ umdConfig ,
5
+ storiesConfig ,
6
+ } from '@lg-tools/build/config/rollup.config.mjs' ;
7
+
8
+ export default [
9
+ {
10
+ ...esmConfig ,
11
+ plugins : [
12
+ ...esmConfig . plugins ,
13
+ urlPlugin ( {
14
+ limit : 0 ,
15
+ include : [ '**/*.less' ] ,
16
+ fileName : '[name][extname]' ,
17
+ } ) ,
18
+ ] ,
19
+ } ,
20
+ {
21
+ ...umdConfig ,
22
+ plugins : [
23
+ ...esmConfig . plugins ,
24
+ urlPlugin ( {
25
+ limit : 0 ,
26
+ include : [ '**/*.less' ] ,
27
+ fileName : '[name][extname]' ,
28
+ } ) ,
29
+ ] ,
30
+ } ,
31
+ storiesConfig ,
32
+ ] ;
You can’t perform that action at this time.
0 commit comments