Skip to content

Commit 4608fb5

Browse files
committed
chore: align version, add comments to RN module rules
1 parent 3799252 commit 4608fb5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.changeset/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
[
77
"@callstack/repack",
88
"@callstack/repack-dev-server",
9-
"@callstack/repack-init"
9+
"@callstack/repack-init",
10+
"@callstack/repack-plugin-reanimated"
1011
]
1112
],
1213
"linked": [],

packages/plugin-reanimated/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@callstack/repack-plugin-reanimated",
3+
"version": "5.0.0-rc.2",
34
"description": "A plugin for @callstack/repack that integrates react-native-reanimated",
45
"author": "Jakub Romańczyk <jakub.romanczyk@callstack.com>",
56
"license": "MIT",
6-
"version": "0.0.1",
7-
"type": "commonjs",
87
"homepage": "https://github.com/callstack/repack",
98
"repository": "github:callstack/repack",
10-
"files": ["dist"],
9+
"type": "commonjs",
1110
"main": "dist/index.js",
1211
"types": "dist/index.d.ts",
12+
"files": ["dist"],
1313
"exports": {
1414
".": {
1515
"types": "./dist/index.d.ts",

packages/repack/src/rules/reactNativeLoadingRules.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ export const REACT_NATIVE_LOADING_RULES: RuleSetRule = {
2626
targets: { 'react-native': '0.74' },
2727
},
2828
jsc: {
29+
// helpers alter the order of execution and cause weird issues with reanimated
30+
// this is very likely an SWC issue
31+
// TODO - investigate and reenable helpers in the future
2932
externalHelpers: false,
3033
loose: true,
3134
parser: {

0 commit comments

Comments
 (0)