You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
During export static files are copied using Node.js fs module (into __sapper__ folder). To optimize sync to a deployment copying atime and mtime should be done.
Describe the solution you'd like
Use fs.utimesSync to preserve static file's access and modification times. Extending the copy function in utils is good to go.
Describe alternatives you've considered
None
How important is this feature to you?
Quite important, my FTP sync tool supports using only mtime (no hashing, etc).
Additional context
None
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
During export static files are copied using Node.js
fs
module (into__sapper__
folder). To optimize sync to a deployment copyingatime
andmtime
should be done.Describe the solution you'd like
Use
fs.utimesSync
to preserve static file's access and modification times. Extending thecopy
function in utils is good to go.Describe alternatives you've considered
None
How important is this feature to you?
Quite important, my FTP sync tool supports using only
mtime
(no hashing, etc).Additional context
None
The text was updated successfully, but these errors were encountered: