File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 77
77
"@fisker/husky-config" : " 1.1.5" ,
78
78
"@fisker/lint-staged-config" : " 1.0.8" ,
79
79
"@fisker/prettier-config" : " 1.0.24" ,
80
+ "@rollup/plugin-json" : " 4.0.0" ,
81
+ "@rollup/plugin-node-resolve" : " 6.0.0" ,
80
82
"ava" : " 2.4.0" ,
81
83
"c8" : " 6.0.1" ,
82
84
"cz-conventional-changelog" : " 3.0.2" ,
91
93
"prettier" : " 1.19.1" ,
92
94
"rollup" : " 1.27.8" ,
93
95
"rollup-plugin-commonjs" : " 10.1.0" ,
94
- "rollup-plugin-filesize" : " 6.2.1" ,
95
- "rollup-plugin-json" : " 4.0.0" ,
96
- "rollup-plugin-node-resolve" : " 5.2.0" ,
97
96
"sort-package-json" : " 1.30.0"
98
97
},
99
98
"publishConfig" : {
Original file line number Diff line number Diff line change 1
1
import cjs from 'rollup-plugin-commonjs'
2
- import json from 'rollup-plugin-json'
3
- import filesize from 'rollup- plugin-filesize '
2
+ // eslint-disable-next-line import/no-unresolved
3
+ import json from '@ rollup/ plugin-json '
4
4
import { dependencies } from './package.json'
5
5
6
- const plugins = [ cjs ( ) , json ( ) , filesize ( ) ]
6
+ const plugins = [ cjs ( ) , json ( ) ]
7
7
8
8
const external = [ 'path' , 'fs' , ...Object . keys ( dependencies ) ]
9
9
You can’t perform that action at this time.
0 commit comments