Skip to content

Commit

Permalink
feat: added retry/timeout work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Jun 21, 2019
1 parent d383717 commit 38d2252
Show file tree
Hide file tree
Showing 11 changed files with 412 additions and 271 deletions.
3 changes: 2 additions & 1 deletion .dist.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
}
}]
],
"plugins": [ "@babel/transform-runtime" ]
"plugins": ["@babel/plugin-transform-runtime"],
"ignore": [ "./node_modules/@babel" ]
}
47 changes: 29 additions & 18 deletions .dist.eslintrc
Original file line number Diff line number Diff line change
@@ -1,44 +1,55 @@
{
"extends": ["eslint:recommended"],
"env": {
"node": true,
"node": false,
"browser": true,
"amd": true,
"es6": true
"es6": true,
"commonjs": true
},
"plugins": ["compat"],
"rules": {
"compat/compat": "error",
"no-func-assign": "off",
"no-redeclare": "off",
"getter-return": "off",
"no-cond-assign": "off",
"no-console": "off",
"no-constant-condition": "off",
"no-unused-vars": "off",
"no-control-regex": "off",
"no-empty": "off",
"no-useless-escape": "off",
"no-fallthrough": "off",
"getter-return": "off",
"no-control-regex": "off",
"no-cond-assign": "off"
"no-func-assign": "off",
"no-redeclare": "off",
"no-unsafe-finally": "off",
"no-unused-vars": "off",
"no-useless-escape": "off"
},
"globals": {
"regeneratorRuntime": "writable"
},
"settings": {
"polyfills": [
"fetch",
"Promise",
"Symbol",
"AbortController",
"Array.from",
"ArrayBuffer.isView",
"Headers",
"Request",
"Response",
"Object.setPrototypeOf",
"Map",
"Number.isNaN",
"Object.getOwnPropertySymbols",
"Uint8Array",
"Object.setPrototypeOf",
"Promise",
"Promise.prototype",
"Promise.race",
"Promise.reject",
"Promise.resolve",
"Reflect",
"Map"
"Symbol.iterator",
"Symbol.prototype",
"Symbol.species",
"Symbol.toPrimitive",
"Symbol.toStringTag",
"Uint8Array",
"fetch"
]
}
}


3 changes: 2 additions & 1 deletion .lib.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"node": "6.4.0"
}
}]
]
],
"plugins": ["@babel/plugin-transform-runtime"]
}
Loading

0 comments on commit 38d2252

Please sign in to comment.