Skip to content

Commit

Permalink
adds overridable to traversal project
Browse files Browse the repository at this point in the history
  • Loading branch information
PTKu committed Oct 2, 2024
1 parent 823724e commit e21d18b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cake/ApaxTraversal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ private static void CreateDependenciesFile(List<ApaxFileInfo> dependencies, stri
version = "0.0.0-dev.0",
type = "app",
targets = new string[] {"llvm"},
devDependencies = new Dictionary<string, string>() { {"@ix-ax/ax-sdk", dependencies.First(p => p.Name == "@ix-ax/ax-sdk").Version} },
dependencies = dependenciesDictionary});
devDependencies = new Dictionary<string, string>()
{ {"@ix-ax/ax-sdk", dependencies.First(p => p.Name == "@ix-ax/ax-sdk").Version} },
dependencies = dependenciesDictionary,
installStrategy = "overridable"});

File.WriteAllText(filePath, yamlContent);
}
Expand Down

0 comments on commit e21d18b

Please sign in to comment.