Skip to content

Commit b419115

Browse files
authored
Merge pull request #28 from Contargo/update-dependencies
Update dependencies
2 parents 7d85a47 + 305e71d commit b419115

7 files changed

Lines changed: 7316 additions & 4662 deletions

File tree

package-lock.json

Lines changed: 7301 additions & 4647 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@
2626
},
2727
"homepage": "https://contargo.github.io/flyps/",
2828
"devDependencies": {
29-
"@babel/core": "^7.7.7",
30-
"@babel/preset-env": "^7.7.7",
29+
"@babel/core": "^7.12.7",
30+
"@babel/preset-env": "^7.12.7",
31+
"@rollup/plugin-babel": "^5.2.1",
3132
"docma": "^3.2.2",
32-
"eslint": "^6.8.0",
33-
"eslint-config-prettier": "^6.9.0",
34-
"eslint-plugin-jest": "^23.2.0",
35-
"eslint-plugin-prettier": "^3.1.2",
36-
"jest": "^24.9.0",
37-
"prettier": "^1.19.1",
38-
"rollup": "^1.27.14",
39-
"rollup-plugin-babel": "^4.4.0"
33+
"eslint": "^7.14.0",
34+
"eslint-config-prettier": "^6.15.0",
35+
"eslint-plugin-jest": "^24.1.3",
36+
"eslint-plugin-prettier": "^3.1.4",
37+
"jest": "^26.6.3",
38+
"prettier": "^2.2.0",
39+
"rollup": "^2.33.3"
4040
},
4141
"jest": {
4242
"collectCoverageFrom": [

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import babel from "rollup-plugin-babel";
1+
import babel from "@rollup/plugin-babel";
22
import pkg from "./package.json";
33

44
export default [

src/batteries.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ effector(
8686
for (let name in headers) {
8787
xhr.setRequestHeader(name, headers[name]);
8888
}
89-
xhr.onloadend = function() {
89+
xhr.onloadend = function () {
9090
switch (this.status) {
9191
case STATUS_OK:
9292
case STATUS_CREATED:

src/batteries.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ beforeEach(() => {
1313
trigger.mockClear();
1414
});
1515

16-
window.XMLHttpRequest = function() {
16+
window.XMLHttpRequest = function () {
1717
let xhr = {
1818
open: jest.fn(),
1919
send: jest.fn(),

src/dom.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { renderQueue } from "./dom";
44

55
/* global global */
66

7-
let ticker = (function() {
7+
let ticker = (function () {
88
let fns = [];
99
return {
1010
dispatch(fn) {

src/event.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { clearEffectors, effector } from "./effect";
1313

1414
/* global global */
1515

16-
let ticker = (function() {
16+
let ticker = (function () {
1717
let fns = [];
1818
return {
1919
dispatch(fn) {

0 commit comments

Comments
 (0)