react-native-acoustic-connect-beta 19.0.4 → 19.0.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
## [19.0.5](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/19.0.4...19.0.5) (2026-07-02)
|
|
1
2
|
## [19.0.4](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/19.0.3...19.0.4) (2026-07-01)
|
|
2
3
|
## [19.0.3](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/19.0.2...19.0.3) (2026-06-30)
|
|
3
4
|
## [19.0.2](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/19.0.1...19.0.2) (2026-06-30)
|
package/package.json
CHANGED
|
@@ -11,13 +11,19 @@
|
|
|
11
11
|
},
|
|
12
12
|
"description": "BETA: React native plugin for Acoustic Connect",
|
|
13
13
|
"devDependencies": {
|
|
14
|
+
"@babel/core": "^7.25.2",
|
|
15
|
+
"@babel/runtime": "^7.25.0",
|
|
14
16
|
"@expo/config-plugins": "~55.0.10",
|
|
15
17
|
"@expo/config-types": "^55.0.5",
|
|
16
18
|
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
|
|
19
|
+
"@react-native/babel-preset": "0.82.1",
|
|
17
20
|
"@release-it/bumper": "^7.0.1",
|
|
18
21
|
"@release-it/conventional-changelog": "^10.0.0",
|
|
22
|
+
"@testing-library/react-native": "^13.3.3",
|
|
19
23
|
"@types/jest": "^29.5.12",
|
|
20
24
|
"@types/react": "^19.0.10",
|
|
25
|
+
"jest": "^29.7.0",
|
|
26
|
+
"jest-junit": "^16.0.0",
|
|
21
27
|
"jetifier": "^1.6.3",
|
|
22
28
|
"nitrogen": "0.35.9",
|
|
23
29
|
"prettier-plugin-kotlin": "^2.1.0",
|
|
@@ -25,6 +31,7 @@
|
|
|
25
31
|
"react-native": "0.82.1",
|
|
26
32
|
"react-native-builder-bob": "^0.37.0",
|
|
27
33
|
"react-native-nitro-modules": "0.35.9",
|
|
34
|
+
"react-test-renderer": "19.1.1",
|
|
28
35
|
"release-it": "^19.0.2",
|
|
29
36
|
"typescript": "5.0.4"
|
|
30
37
|
},
|
|
@@ -59,6 +66,8 @@
|
|
|
59
66
|
],
|
|
60
67
|
"files": [
|
|
61
68
|
"src",
|
|
69
|
+
"!src/**/__tests__/**",
|
|
70
|
+
"!src/**/*.test.*",
|
|
62
71
|
"react-native.config.js",
|
|
63
72
|
"lib",
|
|
64
73
|
"nitrogen",
|
|
@@ -138,7 +147,7 @@
|
|
|
138
147
|
[
|
|
139
148
|
"typescript",
|
|
140
149
|
{
|
|
141
|
-
"project": "tsconfig.json"
|
|
150
|
+
"project": "tsconfig.build.json"
|
|
142
151
|
}
|
|
143
152
|
]
|
|
144
153
|
]
|
|
@@ -205,8 +214,10 @@
|
|
|
205
214
|
"prepack": "npm run build:plugin",
|
|
206
215
|
"rebuild": "npm run codegen && npm run rebuildExample --prefix ./example",
|
|
207
216
|
"release": "release-it",
|
|
208
|
-
"test": "
|
|
217
|
+
"test": "jest",
|
|
218
|
+
"test:all": "npm test && npm run test:plugin",
|
|
209
219
|
"test:plugin": "npm run build:plugin && node --test plugin/__tests__/",
|
|
220
|
+
"test:watch": "jest --watch",
|
|
210
221
|
"typecheck": "tsc --noEmit",
|
|
211
222
|
"verifyConnectSetup": "node cli/index.mjs doctor $INIT_CWD",
|
|
212
223
|
"yalcPublish": "npm run rebuild && yalc publish"
|
|
@@ -214,7 +225,7 @@
|
|
|
214
225
|
"source": "src/index",
|
|
215
226
|
"summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
|
|
216
227
|
"types": "./lib/typescript/src/index.d.ts",
|
|
217
|
-
"version": "19.0.
|
|
228
|
+
"version": "19.0.5",
|
|
218
229
|
"workspaces": [
|
|
219
230
|
"example",
|
|
220
231
|
"Examples/bare-workflow"
|