Skip to content

Commit d6375a4

Browse files
committed
Possible fix for booleanhunter#34
Updates to few NPM packages Using node modules instead of the dist versions
1 parent 99b6dec commit d6375a4

File tree

22 files changed

+34
-30
lines changed

22 files changed

+34
-30
lines changed

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adminlte-reactjs",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"repository": {
55
"type": "git",
66
"url": "http://github.com/booleanhunter/ReactJS-AdminLTE"
@@ -26,17 +26,18 @@
2626
"jquery": "^3.1.1",
2727
"jsx-loader": "^0.13.2",
2828
"raphael": "^2.1.4",
29-
"react": "~0.14.7",
30-
"velocity-animate": "^1.2.3",
31-
"webpack": "^1.12.13",
29+
"react": "^0.14.8",
30+
"react-dom": "^15.4.2",
31+
"velocity-animate": "^1.4.0",
32+
"webpack": "^1.14.0",
3233
"webpack-raphael": "^2.1.4"
3334
},
3435
"devDependencies": {
3536
"chai": "^3.5.0",
3637
"css-loader": "^0.23.1",
3738
"expect": "^1.20.2",
3839
"mocha": "^3.1.2",
39-
"react-hot-loader": "~1.3.0",
40+
"react-hot-loader": "^1.3.1",
4041
"style-loader": "^0.13.0",
4142
"webpack-dev-server": "~1.14.1"
4243
},

reactjsAdminlte.js

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reactjsAdminlte.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/chat-box/chat-box.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define(
22
[
33
'react',
4-
'reactDom',
4+
'react-dom',
55
'../../services/common-functions'
66
],
77
function (React, ReactDOM, commonFunctions) {

src/components/custom-box/box-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define(
22
[
33
'exports',
44
'jquery',
5-
'velocity'
5+
'velocity-animate'
66
],
77
function (exports, $, velocity) {
88
//https://www.debuggex.com/r/Q-7k9g2R6hDLKE7J

src/components/custom-box/box-tool.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define(
22
[
33
'react',
4-
'reactDom',
4+
'react-dom',
55
'./box-functions'
66
],
77
function (React, ReactDOM, boxFunctions) {

src/components/custom-box/box.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define(
22
[
33
'react',
4-
'reactDom',
4+
'react-dom',
55
],
66
function (React, ReactDOM) {
77
var Box = React.createClass({

src/components/post/post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define(
22
[
33
'react',
4-
'reactDom',
4+
'react-dom',
55
'./comment',
66
'./attachment',
77
'../../services/common-functions'

src/pages/dashboardV1/js/components/containers/container-five.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define(
22
[
33
'react',
44
'jquery',
5-
'velocity'
5+
'velocity-animate'
66

77
],
88
function(React,$){

src/pages/dashboardV1/js/dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
define(
77
[
88
'react',
9-
'reactDom',
9+
'react-dom',
1010
'jquery',
1111
'raphael',
1212
'morris',

0 commit comments

Comments
 (0)