Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit d2c66f3

Browse files
committed
Use module.exports instead of export default for semantic client side use
1 parent 6ffa1b0 commit d2c66f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import Pic from './common/Pic';
22

3-
export default Pic;
3+
module.exports = Pic;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-pic",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "React component for progressive and responsive image loading.",
55
"author": "Ben Budnevich",
66
"main": "dist/commonjs/react-pic.js",

0 commit comments

Comments
 (0)