@siteed/expo-audio-studio 2.8.4 → 2.8.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 +6 -1
- package/package.json +1 -10
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [2.8.5] - 2025-05-11
|
|
12
|
+
### Changed
|
|
13
|
+
- chore(expo-audio-studio): remove exports field from package.json ([9dd5029](https://github.com/deeeed/expo-audio-stream/commit/9dd5029d81fcc3a4d5b95ee5956beb8481f3950a))
|
|
14
|
+
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.4 ([e86a373](https://github.com/deeeed/expo-audio-stream/commit/e86a373939ed3a371095cbfe09d664f2b4b16b9d))
|
|
11
15
|
## [2.8.4] - 2025-05-11
|
|
12
16
|
### Changed
|
|
13
17
|
- fix(expo-audio-studio): expo plugin setup ([78810c1](https://github.com/deeeed/expo-audio-stream/commit/78810c1682fc357ed79297971d53d61de88b901f))
|
|
@@ -237,7 +241,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
237
241
|
- Feature: Audio features extraction during recording.
|
|
238
242
|
- Feature: Consistent WAV PCM recording format across all platforms.
|
|
239
243
|
|
|
240
|
-
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.
|
|
244
|
+
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.5...HEAD
|
|
245
|
+
[2.8.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.4...@siteed/expo-audio-studio@2.8.5
|
|
241
246
|
[2.8.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.3...@siteed/expo-audio-studio@2.8.4
|
|
242
247
|
[2.8.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.2...@siteed/expo-audio-studio@2.8.3
|
|
243
248
|
[2.8.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.1...@siteed/expo-audio-studio@2.8.2
|
package/package.json
CHANGED
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siteed/expo-audio-studio",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.5",
|
|
4
4
|
"description": "Comprehensive audio processing library for React Native and Expo with recording, analysis, visualization, and streaming capabilities across iOS, Android, and web",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "./build/cjs/index.js",
|
|
8
8
|
"module": "./build/esm/index.js",
|
|
9
9
|
"types": "./build/types/index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"types": "./build/types/index.d.ts",
|
|
13
|
-
"import": "./build/esm/index.js",
|
|
14
|
-
"require": "./build/cjs/index.js",
|
|
15
|
-
"default": "./build/cjs/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./package.json": "./package.json"
|
|
18
|
-
},
|
|
19
10
|
"expo": {
|
|
20
11
|
"plugin": "./app.plugin.js"
|
|
21
12
|
},
|