Skip to content

Commit 21637c1

Browse files
Merge pull request #33 from ankeetmaini/master
Fixes NODE_ENV typo.
2 parents c908548 + f44157a commit 21637c1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"start": "webpack --watch",
9-
"build": "NODE_END=production webpack"
9+
"build": "NODE_ENV=production webpack"
1010
},
1111
"repository": {
1212
"type": "git",
@@ -43,16 +43,14 @@
4343
"eslint-plugin-import": "^2.7.0",
4444
"eslint-plugin-jsx-a11y": "^6.0.2",
4545
"eslint-plugin-react": "^7.4.0",
46-
"webpack-bundle-analyzer": "2.9.2",
47-
"webpack-node-externals": "1.6.0"
48-
},
49-
"dependencies": {
5046
"material-ui": "^0.19.4",
5147
"moment": "^2.0.0",
5248
"peer-deps-externals-webpack-plugin": "^1.0.2",
5349
"prop-types": "^15.6.0",
5450
"react": "^16.0.0",
5551
"react-dom": "^16.0.0",
56-
"webpack": "^3.5.1"
52+
"webpack": "^3.5.1",
53+
"webpack-bundle-analyzer": "2.9.2",
54+
"webpack-node-externals": "1.6.0"
5755
}
5856
}

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
export { default } from './DateTimePicker.jsx'
1+
import DateTimePicker from "./DateTimePicker.jsx";
2+
3+
export default DateTimePicker;

0 commit comments

Comments
 (0)