@runanywhere/core 0.16.1 → 0.16.3
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.
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
#include <string>
|
|
20
20
|
#include <optional>
|
|
21
21
|
#include <functional>
|
|
22
|
-
#include <NitroModules/Null.hpp>
|
|
22
|
+
// #include <NitroModules/Null.hpp> // Removed - file does not exist in nitro-modules 0.31.3
|
|
23
23
|
#include <variant>
|
|
24
24
|
|
|
25
25
|
namespace margelo::nitro::runanywhere {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runanywhere/core",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.3",
|
|
4
4
|
"description": "Core SDK for RunAnywhere React Native - includes RACommons bindings, native bridges, and public API",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
"typecheck": "tsc --noEmit",
|
|
29
29
|
"lint": "eslint \"src/**/*.ts\"",
|
|
30
30
|
"lint:fix": "eslint \"src/**/*.ts\" --fix",
|
|
31
|
-
"nitrogen": "nitrogen",
|
|
32
|
-
"prepare": "nitrogen"
|
|
31
|
+
"nitrogen": "nitrogen && node scripts/fix-nitrogen-output.js",
|
|
32
|
+
"prepare": "npm run nitrogen",
|
|
33
|
+
"prepublishOnly": "node scripts/fix-nitrogen-output.js"
|
|
33
34
|
},
|
|
34
35
|
"keywords": [
|
|
35
36
|
"react-native",
|