Skip to content

Commit a773760

Browse files
authored
Merge pull request #20 from RedberryProducts/fix/assets-not-loading-on-dev
Fix: assets not being loaded when host app was running under dev command
2 parents 8466e39 + cf3d73d commit a773760

22 files changed

+313
-300
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
strategy:
2121
fail-fast: true
2222
matrix:
23-
os: [ubuntu-latest, windows-latest]
24-
php: [8.4, 8.3]
25-
laravel: [12.*, 11.*, 10.*]
26-
stability: [prefer-lowest, prefer-stable]
23+
os: [ ubuntu-latest, windows-latest ]
24+
php: [ 8.4, 8.3 ]
25+
laravel: [ 12.*, 11.* ]
26+
stability: [ prefer-lowest, prefer-stable ]
2727
include:
2828
- laravel: 12.*
2929
testbench: 10.*

bin/check

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
echo "Running Pint..."
6+
./vendor/bin/pint
7+
8+
echo "Running PHPStan..."
9+
./vendor/bin/phpstan analyse --memory-limit=1G
10+
11+
echo "Running Pest tests..."
12+
./vendor/bin/pest

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@
6969
]
7070
}
7171
},
72+
"bin": [
73+
"bin/check"
74+
],
7275
"minimum-stability": "dev",
7376
"prefer-stable": true
7477
}

dist/assets/mailbox-DazjMeuj.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/manifest.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)