Former-commit-id: 5f72442386
This commit is contained in:
Jarred Sumner
2021-05-24 12:44:13 -07:00
parent 6aa88ae931
commit db6ac5f51b
2 changed files with 5 additions and 7 deletions

View File

@@ -180,8 +180,8 @@ pub const Cli = struct {
var react_fast_refresh = args.flag("--react-fast-refresh");
var main_fields = args.options("--main-fields");
comptime const PlatformMatcher = strings.ExactSizeMatcher(8);
comptime const ResoveMatcher = strings.ExactSizeMatcher(8);
const PlatformMatcher = strings.ExactSizeMatcher(8);
const ResoveMatcher = strings.ExactSizeMatcher(8);
var resolve = Api.ResolveMode.lazy;
if (args.option("--resolve")) |_resolve| {
@@ -295,6 +295,7 @@ pub const Cli = struct {
if (args.serve orelse false) {
try Server.start(allocator, args);
return;
}