We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main
module
package.json
1 parent 29d4f6e commit c96a340Copy full SHA for c96a340
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## 3.3.1
2
+
3
+### Bug Fixes
4
5
+- Fix `main` and `module` being incorrect in `package.json`. (#191)
6
7
## 3.3.0
8
9
### Features
package.json
@@ -1,6 +1,6 @@
{
"name": "react-loading-skeleton",
- "version": "3.3.0",
+ "version": "3.3.1",
"description": "Make beautiful, animated loading skeletons that automatically adapt to your app.",
"keywords": [
"react",
@@ -27,8 +27,8 @@
27
},
28
"./dist/skeleton.css": "./dist/skeleton.css"
29
30
- "main": "dist/index.js",
31
- "module": "dist/index.mjs",
+ "main": "dist/index.cjs",
+ "module": "dist/index.js",
32
"types": "dist/index.d.ts",
33
"files": [
34
"dist/"
0 commit comments