x25 5.0.1 → 5.0.2
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/Account/request.js +2 -2
- package/package.json +15 -16
package/Account/request.js
CHANGED
|
@@ -30,8 +30,8 @@ var normalizeInitialInformation = function normalizeInitialInformation(info) {
|
|
|
30
30
|
Account: Immutable.Map(Account || {}),
|
|
31
31
|
IsConnected: IsConnected,
|
|
32
32
|
Error: IsConnected ? _utility.noError : "Not connected",
|
|
33
|
-
Counties: typeof Counties === "undefined" ?
|
|
34
|
-
Companies: typeof Companies === "undefined" ?
|
|
33
|
+
Counties: typeof Counties === "undefined" ? Immutable.List() : (0, _utility.normalizeArrayByField)(Counties, "Short").entities,
|
|
34
|
+
Companies: typeof Companies === "undefined" ? Immutable.List() : (0, _utility.normalizeArray)(Companies).entities
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.0.
|
|
2
|
+
"version": "5.0.2",
|
|
3
3
|
"name": "x25",
|
|
4
4
|
"description": "x25",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"build": "npm run build-scss && npm run build-babel",
|
|
9
|
-
"clean": "rimraf dist dist",
|
|
6
|
+
"load": "npm run intern-pre && cd dist && npm publish",
|
|
7
|
+
"load-beta": "npm run intern-pre && cd dist && npm publish --tag beta",
|
|
10
8
|
"check": "npm-check -u -i babel-jest -i jest -i history --specials=bin,eslint,babel,webpack",
|
|
11
|
-
"flow": "flow check --color=always",
|
|
12
9
|
"eslint": "eslint --ext .jsx,.js src --fix",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
10
|
+
"intern-pre": "npm run intern-test && npm run eslint && npm run intern-clean && npm run intern-build && npm run intern-copy",
|
|
11
|
+
"intern-build-scss": "node-sass --output-style compressed src -o dist",
|
|
12
|
+
"intern-build-babel": "babel src --out-dir dist",
|
|
13
|
+
"intern-copy": "copy package.json dist",
|
|
14
|
+
"intern-build": "npm run intern-build-scss && npm run intern-build-babel",
|
|
15
|
+
"intern-clean": "rimraf dist dist",
|
|
16
|
+
"intern-test": "jest"
|
|
18
17
|
},
|
|
19
18
|
"repository": {
|
|
20
19
|
"type": "git",
|
|
@@ -74,7 +73,7 @@
|
|
|
74
73
|
"babel-eslint": "^10.0.2",
|
|
75
74
|
"babel-jest": "^23.6.0",
|
|
76
75
|
"babel-loader": "^8.0.6",
|
|
77
|
-
"babel-plugin-add-module-exports": "^1.0.
|
|
76
|
+
"babel-plugin-add-module-exports": "^1.0.4",
|
|
78
77
|
"babel-plugin-flow-react-proptypes": "^25.1.0",
|
|
79
78
|
"babel-plugin-react-html-attrs": "^2.1.0",
|
|
80
79
|
"babel-plugin-syntax-flow": "^6.18.0",
|
|
@@ -103,8 +102,8 @@
|
|
|
103
102
|
"jest-immutable-matchers": "^2.0.1",
|
|
104
103
|
"json-loader": "^0.5.7",
|
|
105
104
|
"node-sass": "^4.13.0",
|
|
106
|
-
"npm": "^
|
|
107
|
-
"npm-check": "^5.9.
|
|
105
|
+
"npm": "^8.3.2",
|
|
106
|
+
"npm-check": "^5.9.2",
|
|
108
107
|
"npm-check-unused": "^6.0.0",
|
|
109
108
|
"npm-check-updates": "^3.2.1",
|
|
110
109
|
"postcss-loader": "^3.0.0",
|
|
@@ -131,12 +130,12 @@
|
|
|
131
130
|
"react": "^16.12.0",
|
|
132
131
|
"react-dom": "^16.12.0",
|
|
133
132
|
"react-loadable": "~5.5.0",
|
|
134
|
-
"react-notification-system-redux": "
|
|
133
|
+
"react-notification-system-redux": "^2.0.1",
|
|
135
134
|
"react-redux": "^7.1.3",
|
|
136
135
|
"react-router-dom": "^5.1.2",
|
|
137
136
|
"react-select": "^3.0.8",
|
|
138
137
|
"react-sidebar": "^3.0.2",
|
|
139
|
-
"reactstrap": "^9.0.
|
|
138
|
+
"reactstrap": "^9.0.1",
|
|
140
139
|
"redux": "^4.0.4",
|
|
141
140
|
"redux-form": "^8.2.5",
|
|
142
141
|
"redux-injector": "^0.1.0",
|