Provide system to force reload of files
See original GitHub issueFollowing https://github.com/lumeland/lume/pull/134, we need a way to force lume to reload a file.
Example use case is if we know a.ts
depends on b.ts
whenever we receive a beforeUpdate
event because b.ts
has changed we want Lume to also re-evaluate a.ts
.
We can add a.ts
to event.files
but that won’t trigger a re-evaluation because of Source
internal cache.
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
How to force browsers to reload cached CSS and JS files?
The mod_rewrite method works well if you want to force a reload of the . css or . js file EVERY time you...
Read more >How to Hard Refresh Your Web Browser (to Bypass Your ...
In most browsers on PC and Mac, you can perform a simple action to force a hard refresh. Hold down the Shift key...
Read more >Is there a way to force a reload/refresh of the project files?
Yes, use RM | File | Synchronize action. It is also available in ToolBar. To force refresh VCS changes/state press "Synchronize" button on ......
Read more >How to do a force refresh of your browser - HyperCube Support
To force refresh a page on your desktop computer,. Do a SHIFT + Reload. Hold down the SHIFT key and click the Reload...
Read more >How to hard refresh your browser - Filecamp
A hard refresh is a way of clearing the browser's cache, to force it to load the most recent version. Hard refresh can...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The new version 1.1.1 was released. It includes the new experimental watcher (enabled with
lume --serve --experimental
orlume --watch --experimental
. Once Deno fixes some issues, it could replace in the future the default watcher.SourceMaps were not used as such, we were using them just as a medium to get the module’s dependencies.