Skip to content

Commit

Permalink
Support popular synonym for Interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Sep 11, 2023
1 parent f7cf171 commit aaeabd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion implement/elm-time/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace ElmTime;

public class Program
{
public static string AppVersionId => "2023-09-10";
public static string AppVersionId => "2023-09-11";

private static int AdminInterfaceDefaultPort => 4000;

Expand Down Expand Up @@ -819,6 +819,8 @@ ElmAppInterfaceConfig.Default with
private static CommandLineApplication AddInteractiveCommand(CommandLineApplication app) =>
app.Command("interactive", interactiveCommand =>
{
interactiveCommand.AddName("repl");

interactiveCommand.Description = "Enter an environment for interactive exploration and composition of Elm programs.";

var contextAppOption =
Expand Down
4 changes: 2 additions & 2 deletions implement/elm-time/elm-time.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>ElmTime</RootNamespace>
<AssemblyName>elm-time</AssemblyName>
<AssemblyVersion>2023.0910.0.0</AssemblyVersion>
<FileVersion>2023.0910.0.0</FileVersion>
<AssemblyVersion>2023.0911.0.0</AssemblyVersion>
<FileVersion>2023.0911.0.0</FileVersion>
<Nullable>enable</Nullable>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
Expand Down

0 comments on commit aaeabd3

Please sign in to comment.