File tree 2 files changed +1
-8
lines changed
packages/nx-release-version
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 30
30
"tag" : " v0.76-stable"
31
31
},
32
32
"fallbackCurrentVersionResolver" : " disk" ,
33
- "skipLockFileUpdate" : true
34
33
}
35
34
}
36
35
}
Original file line number Diff line number Diff line change 3
3
const { releaseVersionGenerator } = require ( '@nx/js/src/generators/release-version/release-version' ) ;
4
4
const fs = require ( 'node:fs' ) ;
5
5
const path = require ( 'node:path' ) ;
6
- const { spawnSync } = require ( 'node:child_process ' ) ;
6
+ const { REPO_ROOT } = require ( '../../scripts/consts ' ) ;
7
7
8
8
async function runSetVersion ( ) {
9
9
const rnmPkgJson = require . resolve ( 'react-native-macos/package.json' ) ;
@@ -15,8 +15,6 @@ async function runSetVersion() {
15
15
16
16
await updateReactNativeArtifacts ( version ) ;
17
17
18
- spawnSync ( 'yarn' , [ 'install' , '--mode' , 'update-lockfile' ] ) ;
19
-
20
18
return [
21
19
path . join (
22
20
REPO_ROOT ,
@@ -63,10 +61,6 @@ async function runSetVersion() {
63
61
'Core' ,
64
62
'ReactNativeVersion.js' ,
65
63
) ,
66
- path . join (
67
- REPO_ROOT ,
68
- 'yarn.lock' ,
69
- ) ,
70
64
] ;
71
65
}
72
66
You can’t perform that action at this time.
0 commit comments