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 has been archived by the owner on Jan 23, 2021. It is now read-only.
currently, sw-precache uses 'fs' (fs.statSync, fs.readFileSync, fs.realpathSync, fs.readFileSync, fs.readFile, fs.writeFile) to access files, whereas, in dev mode, webpack uses a memory filesystem.
In order to allow test sw-precache in dev mode, it could be conviennent to allow sw-precache to use this memory filesystem.
Proposed API:
add a new optional fs entry in params of generate(params, callback) ?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
currently, sw-precache uses 'fs' (
fs.statSync, fs.readFileSync, fs.realpathSync, fs.readFileSync, fs.readFile, fs.writeFile
) to access files, whereas, in dev mode, webpack uses a memory filesystem.In order to allow test sw-precache in dev mode, it could be conviennent to allow sw-precache to use this memory filesystem.
Proposed API:
add a new optional
fs
entry inparams
ofgenerate(params, callback)
?The text was updated successfully, but these errors were encountered: