Skip to content

Commit

Permalink
Merge 305e71d into 7d85a47
Browse files Browse the repository at this point in the history
  • Loading branch information
fheft committed Nov 21, 2020
2 parents 7d85a47 + 305e71d commit 6fb74b4
Show file tree
Hide file tree
Showing 7 changed files with 7,316 additions and 4,662 deletions.
11,948 changes: 7,301 additions & 4,647 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
},
"homepage": "https://contargo.github.io/flyps/",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"docma": "^3.2.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.4.0"
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"rollup": "^2.33.3"
},
"jest": {
"collectCoverageFrom": [
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import babel from "rollup-plugin-babel";
import babel from "@rollup/plugin-babel";
import pkg from "./package.json";

export default [
Expand Down
2 changes: 1 addition & 1 deletion src/batteries.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ effector(
for (let name in headers) {
xhr.setRequestHeader(name, headers[name]);
}
xhr.onloadend = function() {
xhr.onloadend = function () {
switch (this.status) {
case STATUS_OK:
case STATUS_CREATED:
Expand Down
2 changes: 1 addition & 1 deletion src/batteries.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ beforeEach(() => {
trigger.mockClear();
});

window.XMLHttpRequest = function() {
window.XMLHttpRequest = function () {
let xhr = {
open: jest.fn(),
send: jest.fn(),
Expand Down
2 changes: 1 addition & 1 deletion src/dom.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { renderQueue } from "./dom";

/* global global */

let ticker = (function() {
let ticker = (function () {
let fns = [];
return {
dispatch(fn) {
Expand Down
2 changes: 1 addition & 1 deletion src/event.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { clearEffectors, effector } from "./effect";

/* global global */

let ticker = (function() {
let ticker = (function () {
let fns = [];
return {
dispatch(fn) {
Expand Down

0 comments on commit 6fb74b4

Please sign in to comment.