vanilla-create-storage 0.2.1 → 0.2.3
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 -1
- package/package.json +4 -4
- /package/dist/{index.mjs → index.js} +0 -0
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ script:
|
|
|
21
21
|
|
|
22
22
|
<!-- es module -->
|
|
23
23
|
<script type="module">
|
|
24
|
-
import { createStorage } from 'https://unpkg.com/vanilla-create-storage/dist/index.
|
|
24
|
+
import { createStorage } from 'https://unpkg.com/vanilla-create-storage/dist/index.js';
|
|
25
25
|
</script>
|
|
26
26
|
```
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vanilla-create-storage",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A small async storage abstraction for browser storage drivers.",
|
|
6
6
|
"keywords": [
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
],
|
|
27
27
|
"type": "module",
|
|
28
28
|
"sideEffects": false,
|
|
29
|
-
"main": "./dist/index.
|
|
30
|
-
"module": "./dist/index.
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"module": "./dist/index.js",
|
|
31
31
|
"browser": "./dist/index.umd.js",
|
|
32
32
|
"unpkg": "./dist/index.umd.js",
|
|
33
33
|
"exports": {
|
|
34
34
|
".": {
|
|
35
35
|
"browser": "./dist/index.umd.js",
|
|
36
|
-
"import": "./dist/index.
|
|
36
|
+
"import": "./dist/index.js"
|
|
37
37
|
},
|
|
38
38
|
"./package.json": "./package.json"
|
|
39
39
|
},
|
|
File without changes
|