react-native-worklets 0.8.0-nightly-20251211-e7bcde84a → 0.8.0-nightly-20251212-10058a8fb
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/android/build.gradle
CHANGED
|
@@ -102,7 +102,7 @@ def WORKLETS_PROFILING = safeAppExtGet("enableWorkletsProfiling", false)
|
|
|
102
102
|
// Set version for prefab
|
|
103
103
|
version WORKLETS_VERSION
|
|
104
104
|
|
|
105
|
-
def workletsPrefabHeadersDir = project.file("${getLayout().getBuildDirectory()}/prefab-headers/worklets")
|
|
105
|
+
def workletsPrefabHeadersDir = project.file("${getLayout().getBuildDirectory().getAsFile().get().absolutePath}/prefab-headers/worklets")
|
|
106
106
|
|
|
107
107
|
def JS_RUNTIME = {
|
|
108
108
|
// Override JS runtime with environment variable
|
|
@@ -312,7 +312,7 @@ tasks.register('prepareWorkletsHeadersForPrefabs', Copy) {
|
|
|
312
312
|
from("$projectDir/src/main/cpp")
|
|
313
313
|
from("$projectDir/../Common/cpp")
|
|
314
314
|
include("worklets/**/*.h")
|
|
315
|
-
into(workletsPrefabHeadersDir)
|
|
315
|
+
into(workletsPrefabHeadersDir.absolutePath)
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
interface FSService {
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* version used to build the native part of the library in runtime. Remember to
|
|
6
6
|
* keep this in sync with the version declared in `package.json`
|
|
7
7
|
*/
|
|
8
|
-
export const jsVersion = '0.8.0-nightly-
|
|
8
|
+
export const jsVersion = '0.8.0-nightly-20251212-10058a8fb';
|
|
9
9
|
//# sourceMappingURL=jsVersion.js.map
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* version used to build the native part of the library in runtime. Remember to
|
|
4
4
|
* keep this in sync with the version declared in `package.json`
|
|
5
5
|
*/
|
|
6
|
-
export declare const jsVersion = "0.8.0-nightly-
|
|
6
|
+
export declare const jsVersion = "0.8.0-nightly-20251212-10058a8fb";
|
|
7
7
|
//# sourceMappingURL=jsVersion.d.ts.map
|
package/package.json
CHANGED
package/src/debug/jsVersion.ts
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* version used to build the native part of the library in runtime. Remember to
|
|
6
6
|
* keep this in sync with the version declared in `package.json`
|
|
7
7
|
*/
|
|
8
|
-
export const jsVersion = '0.8.0-nightly-
|
|
8
|
+
export const jsVersion = '0.8.0-nightly-20251212-10058a8fb';
|