File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 1010 ANCHOR_VERSION : 0.30.0
1111 NODE_VERSION : 20
1212 SOLANA_VERSION : 1.18.18
13- TOOLCHAIN : 1.81 .0
13+ TOOLCHAIN : 1.85 .0
1414
1515jobs :
1616 lint :
Original file line number Diff line number Diff line change @@ -9,21 +9,13 @@ import {
99import { VersionWithoutPatch } from './versionCore' ;
1010
1111export async function patchSolanaDependencies (
12- ctx : Pick <
13- RenderContext ,
14- 'solanaVersion' | 'targetDirectory' | 'programFramework'
15- >
12+ ctx : Pick < RenderContext , 'solanaVersion' | 'targetDirectory' >
1613) : Promise < void > {
1714 const patchMap : Record < VersionWithoutPatch , string [ ] > = {
1815 '1.17' :
[ '-p [email protected] --precise 0.8.6' ] , 1916 } ;
2017
2118 const patches = patchMap [ ctx . solanaVersion . withoutPatch ] ?? [ ] ;
22-
23- if ( ctx . programFramework === 'anchor' ) {
24- patches . push ( '-p [email protected] --precise 1.7.3' ) ; 25- }
26-
2719 await Promise . all (
2820 patches . map ( async ( patch ) =>
2921 waitForCommand (
You can’t perform that action at this time.
0 commit comments