File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 40
40
npm install @babylonjs/core@${{ github.event.inputs.BJS_Version }}
41
41
npm install @babylonjs/loaders@${{ github.event.inputs.BJS_Version }}
42
42
npm install @babylonjs/react-native@${{ github.event.inputs.BRN_Version }}
43
- npm install @babylonjs/react-native-iosandroid -${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
43
+ npm install @babylonjs/react-native-windows -${{ github.event.inputs.BRN_Postfix }}@${{ github.event.inputs.BRN_Version }}
44
44
npm install @react-native-community/slider
45
45
# npm install react-native-permissions
46
46
npx react-native autolink-windows
Original file line number Diff line number Diff line change 23
23
"react" : " 18.2.0" ,
24
24
"react-native" : " 0.71.7" ,
25
25
"react-native-permissions" : " ^3.6.1" ,
26
- "react-native-windows" : " 0.71.1 "
26
+ "react-native-windows" : " 0.71.7 "
27
27
},
28
28
"devDependencies" : {
29
29
"@babel/core" : " ^7.12.9" ,
Original file line number Diff line number Diff line change @@ -386,7 +386,8 @@ const copyARM64ReleaseUWPFiles = () => {
386
386
}
387
387
388
388
const copyVCXProjUWPFiles = ( ) => {
389
- return gulp . src ( '../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative/*.*' , '!*.pfx' )
389
+ const uwpFilesDir = '../Modules/@babylonjs/react-native-windows/windows/BabylonReactNative' ;
390
+ return gulp . src ( [ `${ uwpFilesDir } /*.*` , `!${ uwpFilesDir } /*.pfx` ] )
390
391
. pipe ( gulp . dest ( 'Assembled-Windows/windows/BabylonReactNative' ) ) ;
391
392
}
392
393
You can’t perform that action at this time.
0 commit comments