Releases: tonysm/importmap-laravel
Releases · tonysm/importmap-laravel
1.2.0
1.1.1
1.1.0
1.0.0
0.4.1
Changelog
- FIXED: Pinned directories were not working on Windows because we're using
/
instead of\
. Anyways, that should be fixed now. Define the directories with/
as you would on any Unix/Linux OS and the package will make sure that gets converted to the correct directory separator when dealing with file paths and to the/
separator when dealing with URIs #5
0.4.0
Changelog
- CHANGED: Changes the manifest filename to be
.importmap-manifest.json
(with a dot prefix) so it can be included in the Vapor artifact (which doesn't remove dotfiles by default). - ADDED: Adds a new config entry for the manifest location. If you have published your
importmap.php
config file, make sure you re-publish that (no need to publish it if you haven't done that)
0.3.0
0.2.0
Changelog
- FIXED: The manifest already had the final asset URL on it, which is handled by the optimize command, so we don't need to call the asset resolver when the manifest exists
- NEW: Added an
AssetResolver
invokable class which should add a?digest=$HASH
to the asset URL, which is useful for cache busting while in local development. This won't be used in production as the optimize command already generates the full URLs there, which means theAssetResolver
won't be called - CHANGED: The
entrypoint
was made optional and it defaults to theapp
module, which matches the "entrypoint" file in the default Laravel install (resources/js/app.js
)