Skip to content

Commit

Permalink
boyscouting
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink committed Jan 11, 2024
1 parent a161265 commit 62fdff9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@

"setup-workbench": [
"cd ./workbench && npm ci",
"ln -sf $PWD/workbench/jsconfig.json ./vendor/orchestra/testbench-core/laravel/jsconfig.json",
"ln -sf $PWD/workbench/node_modules/ ./vendor/orchestra/testbench-core/laravel/node_modules",
"ln -sf $PWD/workbench/resources/js/ ./vendor/orchestra/testbench-core/laravel/resources/js"
"ln -sf $PWD/workbench/jsconfig.json ./vendor/orchestra/testbench-core/laravel",
"ln -sf $PWD/workbench/node_modules/ ./vendor/orchestra/testbench-core/laravel",
"ln -sf $PWD/workbench/resources/js/ ./vendor/orchestra/testbench-core/laravel/resources"
],

"serve": [
Expand Down
1 change: 1 addition & 0 deletions src/Exceptions/BundlingFailedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function getSolution(): Solution
str_contains($this->result->errorOutput(), 'bun: No such file or directory') => $this->bunNotInstalledSolution(),
str_contains($this->result->errorOutput(), 'error: Could not resolve') => $this->moduleNotResolvableSolution(),
str_contains($this->result->errorOutput(), 'tsconfig.json: ENOENT') => $this->missingJsconfigFileSolution(),
str_contains($this->result->errorOutput(), 'Cannot find tsconfig') => $this->missingJsconfigFileSolution(),
default => BaseSolution::create()
->setSolutionTitle('Failed to run the following process:')
->setSolutionDescription($this->result->command())
Expand Down

0 comments on commit 62fdff9

Please sign in to comment.