File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
packages/react-native-builder-bob/src Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,15 @@ jobs:
121
121
rm -f example/yarn.lock # Workaround for cached yarn.lock from older version
122
122
yarn install --no-immutable
123
123
124
+ - name : Use local version of react-native-builder-bob
125
+ run : |
126
+ cd packages/react-native-builder-bob
127
+ npm pack
128
+ tgz=$(ls react-native-builder-bob-*.tgz)
129
+ cd -
130
+ cd ${{ env.work_dir }}
131
+ yarn add ../packages/react-native-builder-bob/$tgz
132
+
124
133
- name : Get build target
125
134
working-directory : ${{ env.work_dir }}
126
135
run : |
Original file line number Diff line number Diff line change @@ -400,6 +400,8 @@ yargs
400
400
const targetName = Array . isArray ( target ) ? target [ 0 ] : target ;
401
401
const targetOptions = Array . isArray ( target ) ? target [ 1 ] : undefined ;
402
402
403
+ report . info ( 'hello world' ) ;
404
+
403
405
report . info ( `Building target ${ kleur . blue ( targetName ) } ` ) ;
404
406
405
407
switch ( targetName ) {
You can’t perform that action at this time.
0 commit comments