Skip to content

Commit 4e17a78

Browse files
committed
Fix optimize command when vendor import starts with forward slash
1 parent 139b788 commit 4e17a78

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

src/Commands/OptimizeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function handle(Importmap $importmap): int
2424
$optimizedImports = collect($imports['imports'])
2525
->reject(fn (string $url) => Str::startsWith($url, ['http://', 'https://']))
2626
->map(function (string $file) use ($importmap) {
27-
$sourceFile = $importmap->rootPath.(str_starts_with($file, 'vendor/') ? '/public/' : '/resources/').trim($file, '/');
27+
$sourceFile = $importmap->rootPath.(str_starts_with(trim($file, '/'), 'vendor/') ? '/public/' : '/resources/').trim($file, '/');
2828
$sourceReplacement = $importmap->rootPath.'/public/dist/'.trim($this->digest($file, $sourceFile), '/');
2929

3030
File::ensureDirectoryExists(dirname($sourceReplacement));

tests/OptimizeCommandTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ protected function setUp(): void
2222
$this->map->pin('app');
2323
$this->map->pin('md5', to: 'https://cdn.skypack.dev/md5', preload: true);
2424
$this->map->pin('my_lib', to: 'vendor/nova/my_lib.js', preload: true);
25+
$this->map->pin('my_other_lib', to: '/vendor/nova/my_other_lib.js', preload: true);
2526

2627
if (File::isDirectory($this->distPath = $this->rootPath.'/public/dist/')) {
2728
File::cleanDirectory($this->distPath);

tests/stubs/public/vendor/nova/my_other_lib.js

Whitespace-only changes.

0 commit comments

Comments
 (0)