Skip to content

Commit

Permalink
Actually remove filter on json assets as intended
Browse files Browse the repository at this point in the history
In laravel#35, the intended change seems to be that JSON files should be included in the assets upload. However, the actual effect of laravel#35 was that *all* JSON files were excluded in the assets upload.

This change removes the filter on JSON asset files entirely.
  • Loading branch information
freerkminnema authored Sep 3, 2020
1 parent 1f5dd16 commit f2e34ab
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/AssetFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public static function get($path)
->notName('web.config')
->notName('browserconfig.xml')
->notName('*.webmanifest')
->notName('*.json')
->notName('*.php')
->ignoreVcs(true)
->ignoreDotFiles(true)
Expand Down

0 comments on commit f2e34ab

Please sign in to comment.