@siteed/expo-audio-studio 2.8.4 → 2.8.6

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
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  ## [Unreleased]
9
9
 
10
10
 
11
+ ## [2.8.6] - 2025-05-11
12
+ ### Changed
13
+ - chore(expo-audio-studio): update Android module configuration and prevent plugin conflicts ([7f696fb](https://github.com/deeeed/expo-audio-stream/commit/7f696fb4277f1747d1ba753397d2d6a97ea19abc))
14
+ - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.5 ([bece9b6](https://github.com/deeeed/expo-audio-stream/commit/bece9b6b43cb1a780d9786e376efdd93ef82446f))
15
+ ## [2.8.5] - 2025-05-11
16
+ ### Changed
17
+ - chore(expo-audio-studio): remove exports field from package.json ([9dd5029](https://github.com/deeeed/expo-audio-stream/commit/9dd5029d81fcc3a4d5b95ee5956beb8481f3950a))
18
+ - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.4 ([e86a373](https://github.com/deeeed/expo-audio-stream/commit/e86a373939ed3a371095cbfe09d664f2b4b16b9d))
11
19
  ## [2.8.4] - 2025-05-11
12
20
  ### Changed
13
21
  - fix(expo-audio-studio): expo plugin setup ([78810c1](https://github.com/deeeed/expo-audio-stream/commit/78810c1682fc357ed79297971d53d61de88b901f))
@@ -237,7 +245,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
237
245
  - Feature: Audio features extraction during recording.
238
246
  - Feature: Consistent WAV PCM recording format across all platforms.
239
247
 
240
- [unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.4...HEAD
248
+ [unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.6...HEAD
249
+ [2.8.6]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.5...@siteed/expo-audio-studio@2.8.6
250
+ [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
251
  [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
252
  [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
253
  [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
@@ -5,6 +5,10 @@ apply plugin: 'maven-publish'
5
5
  group = 'net.siteed.audiostream'
6
6
  version = '0.1.0'
7
7
 
8
+ // These properties prevent plugin conflicts in all Expo versions
9
+ project.ext.isLibrary = true
10
+ project.ext.preventPluginConflict = true
11
+
8
12
  buildscript {
9
13
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
10
14
  if (expoModulesCorePlugin.exists()) {
@@ -4,6 +4,7 @@
4
4
  "modules": ["ExpoAudioStreamModule"]
5
5
  },
6
6
  "android": {
7
- "modules": ["net.siteed.audiostream.ExpoAudioStreamModule"]
7
+ "modules": ["net.siteed.audiostream.ExpoAudioStreamModule"],
8
+ "packageImportPath": "net.siteed.audiostream"
8
9
  }
9
10
  }
package/package.json CHANGED
@@ -1,21 +1,12 @@
1
1
  {
2
2
  "name": "@siteed/expo-audio-studio",
3
- "version": "2.8.4",
3
+ "version": "2.8.6",
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
  },