Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Command/DumpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected function initialize(InputInterface $input, OutputInterface $output): v
{
parent::initialize($input, $output);

$this->targetPath = $input->getArgument('target') ?: sprintf('%s/web/js', $this->projectDir);
$this->targetPath = $input->getArgument('target') ?: sprintf('%s/public/js', $this->projectDir);
}

protected function execute(InputInterface $input, OutputInterface $output): int
Expand Down
2 changes: 1 addition & 1 deletion Dumper/TranslationDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function addLoader($id, $loader)
* @param \stdClass|null $merge Merge options.
*/
public function dump(
$target = 'web/js',
$target = 'public/js',
$pattern = self::DEFAULT_TRANSLATION_PATTERN,
array $formats = array(),
?\stdClass $merge = null
Expand Down