File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed
Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 1919 "license" : " Apache-2.0" ,
2020 "author" : " IOHK" ,
2121 "main" : " dist/index.js" ,
22- "module" : " dist/index.esm.js" ,
2322 "typings" : " dist/index.d.ts" ,
2423 "scripts" : {
2524 "build" : " yarn build:icons && rollup -c rollup.config.js" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import image from '@rollup/plugin-image';
33import typescript from '@rollup/plugin-typescript' ;
44import svgr from '@svgr/rollup' ;
55import { vanillaExtractPlugin } from '@vanilla-extract/rollup-plugin' ;
6- import copy from 'rollup-plugin-copy' ;
76import peerDepsExternal from 'rollup-plugin-peer-deps-external' ;
87
98import packageJson from './package.json' ;
@@ -23,20 +22,12 @@ export default () => ({
2322 vanillaExtractPlugin ( {
2423 identifiers : 'short' ,
2524 } ) ,
26- copy ( {
27- targets : [ { src : 'src/assets/icons/*' , dest : 'dist/assets/icons' } ] ,
28- } ) ,
2925 ] ,
3026 output : [
3127 {
3228 file : packageJson . main ,
3329 format : 'cjs' ,
34- sourcemap : true ,
35- } ,
36- {
37- file : packageJson . module ,
38- format : 'esm' ,
39- sourcemap : true ,
30+ sourcemap : false ,
4031 } ,
4132 ] ,
4233 external : [ / n o d e _ m o d u l e s / ] ,
You can’t perform that action at this time.
0 commit comments