r2-explorer 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/bin/r2-explorer.js +2 -2
- package/dist/umd/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ You can see an live example, in `read-only` mode, in your browser at https://r2-
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
11
|
- Very quick bucket/folder navigation
|
|
12
|
-
- pdf, image, txt, markdown, etc in-browser preview
|
|
12
|
+
- pdf, image, txt, markdown, csv, etc in-browser preview
|
|
13
13
|
- Drag-and-Drop upload
|
|
14
14
|
- Create folders
|
|
15
15
|
- Rename files
|
|
@@ -65,7 +65,6 @@ wrangler publish
|
|
|
65
65
|
- Integration with cloudflare access
|
|
66
66
|
- allow bucket names with spaces
|
|
67
67
|
- Search files
|
|
68
|
-
- CSV Previewer
|
|
69
68
|
- Upload folders
|
|
70
69
|
- Rename folders
|
|
71
70
|
- Delete folders
|
package/bin/r2-explorer.js
CHANGED
|
@@ -34,7 +34,7 @@ fs.writeFileSync(
|
|
|
34
34
|
"publish": "wrangler publish"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"r2-explorer": "^0.2.
|
|
37
|
+
"r2-explorer": "^0.2.8"
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -54,7 +54,7 @@ const explorer = R2Explorer({ readonly: true })
|
|
|
54
54
|
|
|
55
55
|
export default {
|
|
56
56
|
async fetch(request, env, context) {
|
|
57
|
-
return explorer
|
|
57
|
+
return explorer(request, env, context)
|
|
58
58
|
}
|
|
59
59
|
};
|
|
60
60
|
`
|