@tarojs/rn-runner 3.5.2-aplha.1 → 3.5.2-aplha.2
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/package.json +5 -5
- package/src/config/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/rn-runner",
|
|
3
|
-
"version": "3.5.2-aplha.
|
|
3
|
+
"version": "3.5.2-aplha.2",
|
|
4
4
|
"description": "ReactNative build tool for taro",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"@rollup/plugin-json": "^4.1.0",
|
|
32
32
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
33
33
|
"@rollup/plugin-replace": "^4.0.0",
|
|
34
|
-
"@tarojs/helper": "3.5.2-aplha.
|
|
35
|
-
"@tarojs/rn-style-transformer": "3.5.2-aplha.
|
|
36
|
-
"@tarojs/rn-supporter": "3.5.2-aplha.
|
|
37
|
-
"@tarojs/rn-transformer": "3.5.2-aplha.
|
|
34
|
+
"@tarojs/helper": "3.5.2-aplha.2",
|
|
35
|
+
"@tarojs/rn-style-transformer": "3.5.2-aplha.2",
|
|
36
|
+
"@tarojs/rn-supporter": "3.5.2-aplha.2",
|
|
37
|
+
"@tarojs/rn-transformer": "3.5.2-aplha.2",
|
|
38
38
|
"acorn-jsx": "^5.3.2",
|
|
39
39
|
"fs-extra": "^8.0.1",
|
|
40
40
|
"lodash": "^4.17.21",
|
package/src/config/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ import ConditionalFileStore from './conditional-file-store'
|
|
|
9
9
|
|
|
10
10
|
const reactNativePath: string = resolveReactNativePath(findProjectRoot())
|
|
11
11
|
|
|
12
|
-
type ResolveRequestFunc = (context,
|
|
12
|
+
type ResolveRequestFunc = (context, moduleName, platform) => any
|
|
13
13
|
type GetModulesRunBeforeMainModuleFunc = () => any
|
|
14
14
|
type GetPolyfillsFunc = () => any
|
|
15
15
|
interface MetroConfig {
|