Skip to content

Commit 484961d

Browse files
committed
Merged zonay:4.1.1
2 parents 6454de4 + 1835c87 commit 484961d

17 files changed

+2181
-11210
lines changed

.eslintrc.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

.eslintrc.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true
6+
},
7+
"extends": [
8+
"airbnb",
9+
"airbnb-typescript"
10+
],
11+
"rules": {
12+
"react/function-component-definition": [
13+
2,
14+
{
15+
"namedComponents": "arrow-function",
16+
"unnamedComponents": "arrow-function"
17+
}
18+
]
19+
},
20+
"ignorePatterns": [
21+
"components.d.ts",
22+
"handlers.d.ts"
23+
],
24+
"parserOptions": {
25+
"project": "./tsconfig.json"
26+
}
27+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist/
22
node_modules/
33
.idea/
44
.DS_Store
5+
link.config.json

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ fbEvent({
7171
eventId: 'eventId', // optional, unique event id's will be generated by default
7272
emails: ['email1', 'email2'], // optional
7373
phones: ['phone1', 'phone2'], // optional
74+
firstName: 'firstName', // optional
75+
lastName: 'lastName', // optional
76+
country: 'country', // optional
77+
city: 'city', // optional
78+
zipCode: 'zipCode', // optional
7479
products: [{
7580
sku: 'product123',
7681
quantity: 1,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)