UNPKG
fetch-retry
Version:
latest (6.0.0)
6.0.0
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.1.1
4.1.0
4.0.1
4.0.0
3.2.3
3.2.2
3.2.1
3.1.0
3.0.1
3.0.0
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
0.1.1
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Extend any fetch library with retry functionality
github.com/jonbern/fetch-retry
jonbern/fetch-retry
fetch-retry
/
rollup.config.js
13 lines
(11 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
commonjs
from
'@rollup/plugin-commonjs'
;
import
pkg
from
'./package.json'
;
export
default
{
input
:
'index.js'
,
output
: {
name
:
'fetchRetry'
,
file
: pkg.
browser
,
format
:
'umd'
},
plugins
: [
commonjs
()] };