Skip to content

Commit b99fd03

Browse files
committed
Release 7.0.3
1 parent bdcd7ef commit b99fd03

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

.eslintrc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
2-
"extends": "airbnb",
32
"parser": "babel-eslint",
4-
"globals": {
5-
"location": true,
6-
"window": true
7-
},
8-
"rules": {
3+
"extends": ["airbnb", "plugin:jest/recommended"],
4+
"env": {
5+
"node": true,
6+
"jest": true
97
}
108
}

package.json

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "react-facebook",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"description": "Facebook components like a Login button, Like, Share, Comments, Embedded Post/Video, Messenger Chat and others",
55
"author": {
66
"name": "Zlatko Fedor",
7-
"email": "zfedor@cherryprojects.com",
7+
"email": "zfedor@gmail.com",
88
"url": "http://www.cherryprojects.com/"
99
},
1010
"repository": {
@@ -36,8 +36,9 @@
3636
"browser": "./lib/index.js",
3737
"module": "./module/index.js",
3838
"esnext": "./src/index.js",
39+
"sideEffects": false,
3940
"engines": {
40-
"node": ">= 0.12.0"
41+
"node": ">= 6.0.0"
4142
},
4243
"scripts": {
4344
"prepublish": "npm run build",
@@ -56,14 +57,14 @@
5657
]
5758
},
5859
"dependencies": {
59-
"@babel/runtime": "^7.3.1",
60+
"@babel/runtime": "^7.3.4",
6061
"can-use-dom": "^0.1.0",
6162
"react-spinner-children": "^1.0.8"
6263
},
6364
"devDependencies": {
6465
"@babel/cli": "^7.2.3",
65-
"@babel/core": "^7.3.3",
66-
"@babel/plugin-proposal-class-properties": "^7.3.3",
66+
"@babel/core": "^7.3.4",
67+
"@babel/plugin-proposal-class-properties": "^7.3.4",
6768
"@babel/plugin-proposal-decorators": "^7.3.0",
6869
"@babel/plugin-proposal-do-expressions": "^7.2.0",
6970
"@babel/plugin-proposal-export-default-from": "^7.2.0",
@@ -78,28 +79,29 @@
7879
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
7980
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
8081
"@babel/plugin-syntax-import-meta": "^7.2.0",
81-
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
82+
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
8283
"@babel/plugin-transform-proto-to-assign": "^7.2.0",
83-
"@babel/plugin-transform-runtime": "^7.2.0",
84-
"@babel/preset-env": "^7.3.1",
84+
"@babel/plugin-transform-runtime": "^7.3.4",
85+
"@babel/preset-env": "^7.3.4",
8586
"@babel/preset-react": "^7.0.0",
8687
"babel-core": "^7.0.0-bridge.0",
8788
"babel-eslint": "^10.0.1",
88-
"babel-jest": "^24.1.0",
89+
"babel-jest": "^24.3.1",
8990
"cross-env": "^5.2.0",
9091
"enzyme": "^3.9.0",
91-
"enzyme-adapter-react-16": "^1.9.1",
92-
"eslint": "^5.14.0",
92+
"enzyme-adapter-react-16": "^1.10.0",
93+
"eslint": "^5.15.1",
9394
"eslint-config-airbnb": "^17.1.0",
9495
"eslint-loader": "^2.1.2",
9596
"eslint-plugin-import": "^2.16.0",
97+
"eslint-plugin-jest": "^22.3.0",
9698
"eslint-plugin-jsx-a11y": "^6.2.1",
9799
"eslint-plugin-react": "^7.12.4",
98-
"jest": "^24.1.0",
99-
"jest-cli": "^24.1.0",
100-
"react": "^16.8.2",
101-
"react-dom": "^16.8.2",
102-
"react-test-renderer": "^16.8.2"
100+
"jest": "^24.3.1",
101+
"jest-cli": "^24.3.1",
102+
"react": "^16.8.4",
103+
"react-dom": "^16.8.4",
104+
"react-test-renderer": "^16.8.4"
103105
},
104106
"peerDependencies": {
105107
"react": "16.x"

src/Facebook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class Facebook {
4040
}
4141

4242
this.loadingPromise = new Promise((resolve) => {
43-
const {
43+
const {
4444
domain,
4545
language,
4646
debug,

0 commit comments

Comments
 (0)