Commit a892ed0a authored by yann300's avatar yann300

do not remove the old file structure

parent 89c9cf28
......@@ -6,13 +6,16 @@ import { Storage } from 'remix-lib'
*/
export default (fileProvider) => {
const fileStorage = new Storage('sol:')
if (fileStorage.keys().length === 0) return
const flag = 'status'
const fileStorageBrowserFS = new Storage('remix_browserFS_migration:')
if (fileStorageBrowserFS.get(flag) === 'done') return
fileStorage.keys().forEach((path) => {
if (path !== '.remix.config') {
const content = fileStorage.get(path)
fileProvider.set(path, content)
fileStorage.remove(path)
// fileStorage.remove(path) we don't want to remove it as we are still supporting the old version
console.log('file migrated', path)
}
})
fileStorageBrowserFS.set(flag, 'done')
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment