tagworks-sdk-v1-react 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/TagWorksModule.swift +1 -0
- package/lib/commonjs/index.js +1 -1
- package/lib/module/index.js +1 -1
- package/package.json +2 -20
- package/src/index.tsx +2 -2
package/ios/TagWorksModule.swift
CHANGED
package/lib/commonjs/index.js
CHANGED
package/lib/module/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tagworks-sdk-v1-react",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "TagWorks SDK React Native Library",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -64,14 +64,11 @@
|
|
|
64
64
|
"registry": "https://registry.npmjs.org/"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@commitlint/config-conventional": "^17.0.2",
|
|
68
|
-
"@evilmartians/lefthook": "^1.5.0",
|
|
69
67
|
"@react-native-community/cli": "15.0.1",
|
|
70
68
|
"@react-native/eslint-config": "^0.73.1",
|
|
71
69
|
"@release-it/conventional-changelog": "^9.0.2",
|
|
72
70
|
"@types/jest": "^29.5.5",
|
|
73
71
|
"@types/react": "^18.2.44",
|
|
74
|
-
"commitlint": "^17.0.2",
|
|
75
72
|
"del-cli": "^5.1.0",
|
|
76
73
|
"eslint": "^8.51.0",
|
|
77
74
|
"eslint-config-prettier": "^9.0.0",
|
|
@@ -103,11 +100,6 @@
|
|
|
103
100
|
"<rootDir>/lib/"
|
|
104
101
|
]
|
|
105
102
|
},
|
|
106
|
-
"commitlint": {
|
|
107
|
-
"extends": [
|
|
108
|
-
"@commitlint/config-conventional"
|
|
109
|
-
]
|
|
110
|
-
},
|
|
111
103
|
"release-it": {
|
|
112
104
|
"git": {
|
|
113
105
|
"commitMessage": "chore: release ${version}",
|
|
@@ -132,17 +124,7 @@
|
|
|
132
124
|
"prettier"
|
|
133
125
|
],
|
|
134
126
|
"rules": {
|
|
135
|
-
"react/react-in-jsx-scope": "off"
|
|
136
|
-
"prettier/prettier": [
|
|
137
|
-
"error",
|
|
138
|
-
{
|
|
139
|
-
"quoteProps": "consistent",
|
|
140
|
-
"singleQuote": true,
|
|
141
|
-
"tabWidth": 2,
|
|
142
|
-
"trailingComma": "es5",
|
|
143
|
-
"useTabs": false
|
|
144
|
-
}
|
|
145
|
-
]
|
|
127
|
+
"react/react-in-jsx-scope": "off"
|
|
146
128
|
}
|
|
147
129
|
},
|
|
148
130
|
"eslintIgnore": [
|
package/src/index.tsx
CHANGED
|
@@ -17,10 +17,10 @@ import { NativeModules } from 'react-native';
|
|
|
17
17
|
// },
|
|
18
18
|
// }
|
|
19
19
|
// );
|
|
20
|
-
//
|
|
20
|
+
//
|
|
21
21
|
// export function multiply(a: number, b: number): Promise<number> {
|
|
22
22
|
// return TagworksSdkV1.multiply(a, b);
|
|
23
23
|
// }
|
|
24
24
|
|
|
25
25
|
const { TagWorksModule, DataBundleModule, StandardEventModule } = NativeModules;
|
|
26
|
-
export { TagWorksModule, DataBundleModule, StandardEventModule };
|
|
26
|
+
export { TagWorksModule, DataBundleModule, StandardEventModule };
|