Skip to content

Commit 4d88615

Browse files
committed
Fix prod option rename
1 parent a420f23 commit 4d88615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/BuildCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ public function handle()
7676

7777
private function shouldVersion(): bool
7878
{
79-
return $this->option('digest') || $this->option('production');
79+
return $this->option('digest') || $this->option('prod');
8080
}
8181

8282
private function shouldMinify(): bool
8383
{
84-
return $this->option('minify') || $this->option('production');
84+
return $this->option('minify') || $this->option('prod');
8585
}
8686

8787
protected function ensureAssetIsVersioned(string $generatedFile): string

0 commit comments

Comments
 (0)