expo-juce 0.2.2 → 0.2.4

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.
Files changed (2) hide show
  1. package/ios/JuceConfig.h +7 -0
  2. package/package.json +1 -1
package/ios/JuceConfig.h CHANGED
@@ -1,5 +1,12 @@
1
1
  #pragma once
2
2
 
3
+ // Xcode 16+ clang no longer implicitly includes these —
4
+ // JUCE uses FLT_MAX, FLT_MIN, INT_MAX, etc. throughout.
5
+ #include <cfloat>
6
+ #include <climits>
7
+ #include <cstdint>
8
+ #include <cmath>
9
+
3
10
  // Tell JUCE that global module settings are configured
4
11
  #define JUCE_GLOBAL_MODULE_SETTINGS_INCLUDED 1
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-juce",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Realtime DSP w/C++ & JUCE",
5
5
  "type": "module",
6
6
  "main": "build/index.js",