File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,18 +45,18 @@ expressWs(app);
4545 . toString ( ) ;
4646 const runtime_names_unordered = JSON . parse ( runtimes_data ) ;
4747
48- const priorities_data = cp
48+ const mainstream_runtimes_data = cp
4949 . execSync (
50- `nix eval --json ${ config . flake_path } #pistonRuntimePriorities `
50+ `nix eval --json ${ config . flake_path } #pistonMainstreamRuntimes `
5151 )
5252 . toString ( ) ;
53- const priorities = JSON . parse ( priorities_data ) . filter ( runtime =>
53+ const mainstream_runtimes = JSON . parse ( mainstream_runtimes_data ) . filter ( runtime =>
5454 runtime_names_unordered . includes ( runtime )
5555 ) ;
5656 const runtime_names = [
57- ...priorities ,
57+ ...mainstream_runtimes ,
5858 ...runtime_names_unordered . filter (
59- runtime => ! priorities . includes ( runtime )
59+ runtime => ! mainstream_runtimes . includes ( runtime )
6060 ) ,
6161 ] ;
6262
Original file line number Diff line number Diff line change 6565 "bash-only" = runtimeList [ "bash" ] ;
6666 "none" = { } ;
6767 } ;
68- pistonRuntimePriorities = [
68+ pistonMainstreamRuntimes = [
6969 "mono-csharp"
70- "dotnet-sdk-csharp"
7170 "python3"
72- "python2"
7371 "node-javascript"
7472 "node-typescript"
75- "deno-javascript"
76- "deno-typescript"
7773 "mono-basic"
78- "dotnet-sdk-visual-basic"
7974 ] ;
8075
8176 legacyPackages . "${ system } " = rec {
You can’t perform that action at this time.
0 commit comments