@zohodesk/react-cli 1.1.25 → 1.1.26-exp.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/README.md +26 -0
- package/lib/configs/resolvers.js +4 -0
- package/lib/configs/webpack.dev.config.js +6 -3
- package/lib/configs/webpack.prod.config.js +5 -2
- package/lib/loaderUtils/getCSSLoaders.js +3 -2
- package/lib/pluginUtils/getDevPlugins.js +7 -2
- package/lib/pluginUtils/getProdPlugins.js +7 -2
- package/lib/plugins/CssOrderControlPlugin.js +36 -0
- package/lib/schemas/index.js +12 -0
- package/lib/servers/requireLocalOrGlobal.js +5 -2
- package/lib/utils/cssClassNameGenerate.js +6 -1
- package/npm-shrinkwrap.json +43 -38
- package/package.json +2 -2
package/README.md
CHANGED
@@ -44,6 +44,32 @@ Now to run app
|
|
44
44
|
|
45
45
|
# Change Logs
|
46
46
|
|
47
|
+
# 1.1.26 (06-09-2024)
|
48
|
+
|
49
|
+
**Features**
|
50
|
+
|
51
|
+
- Add a new className format that mirrors the class names used in the source code.
|
52
|
+
```
|
53
|
+
app: {
|
54
|
+
displayClassName: true
|
55
|
+
}
|
56
|
+
```
|
57
|
+
|
58
|
+
- option given to disable the HtmlWebpackPlugin.
|
59
|
+
```
|
60
|
+
app: {
|
61
|
+
generateHtml: true
|
62
|
+
}
|
63
|
+
```
|
64
|
+
- Control the rendering order of async CSS chunks.
|
65
|
+
```
|
66
|
+
css: {
|
67
|
+
enable: true,
|
68
|
+
className: <ID of the tag before which all async CSS chunks should be rendered.>
|
69
|
+
}
|
70
|
+
```
|
71
|
+
|
72
|
+
|
47
73
|
# 1.1.25 (12-08-2024)
|
48
74
|
|
49
75
|
- mp3 files support added
|
package/lib/configs/resolvers.js
CHANGED
@@ -22,10 +22,14 @@ function moduleResolver(options) {
|
|
22
22
|
disableES5Transpile
|
23
23
|
} = options.app;
|
24
24
|
const customAlias = options.alias;
|
25
|
+
console.log(moduleResolvePath);
|
25
26
|
let required = moduleResolvePath && (0, _requireLocalOrGlobal.requireLocal)(moduleResolvePath);
|
27
|
+
console.log(required, 'requirwe');
|
26
28
|
|
27
29
|
if (!required) {
|
30
|
+
console.log('this global');
|
28
31
|
required = (0, _requireLocalOrGlobal.requireGlobal)('@zohodesk/client_packages_group');
|
32
|
+
console.log(required, 'what');
|
29
33
|
|
30
34
|
if (required) {
|
31
35
|
(0, _logger.messageLogger)('global `@zohodesk/client_packages_group` package taken as client_packages_group');
|
@@ -43,7 +43,8 @@ const {
|
|
43
43
|
crossorigin,
|
44
44
|
postCssPluginOrder,
|
45
45
|
externals,
|
46
|
-
enableMjsLoader
|
46
|
+
enableMjsLoader,
|
47
|
+
displayClassName
|
47
48
|
},
|
48
49
|
enableTypeScript
|
49
50
|
} = options;
|
@@ -120,7 +121,8 @@ module.exports = {
|
|
120
121
|
classNameBlob: '[local]',
|
121
122
|
cssUniqueness: false,
|
122
123
|
selectorReplace: null,
|
123
|
-
postCssPluginOrder
|
124
|
+
postCssPluginOrder,
|
125
|
+
displayClassName
|
124
126
|
})
|
125
127
|
} : null, {
|
126
128
|
test: seperateCssModules ? /\.module\.css$/ : /(\.module)?\.css$/,
|
@@ -137,7 +139,8 @@ module.exports = {
|
|
137
139
|
selectorReplace,
|
138
140
|
cssHashSelectors,
|
139
141
|
classNamePrefix,
|
140
|
-
postCssPluginOrder
|
142
|
+
postCssPluginOrder,
|
143
|
+
displayClassName
|
141
144
|
})
|
142
145
|
}, (0, _configsAssetsLoaders.configImageLoader)(nameTemplate), (0, _configsAssetsLoaders.configFontLoader)(nameTemplate), (0, _configsAssetsLoaders.configSVGLoader)(nameTemplate), (0, _configsAssetsLoaders.configVideoLoader)(nameTemplate), (0, _configsAssetsLoaders.configAudioLoader)(nameTemplate), {
|
143
146
|
test: /\.tmpl$/,
|
@@ -36,6 +36,7 @@ const {
|
|
36
36
|
cssVariableReplacementConfig,
|
37
37
|
selectorWeightConfig,
|
38
38
|
cssUniqueness,
|
39
|
+
displayClassName,
|
39
40
|
customClassNamePrefix,
|
40
41
|
server: {
|
41
42
|
mode
|
@@ -173,7 +174,8 @@ module.exports = {
|
|
173
174
|
cssUniqueness: false,
|
174
175
|
customClassNamePrefix,
|
175
176
|
selectorReplace: null,
|
176
|
-
postCssPluginOrder
|
177
|
+
postCssPluginOrder,
|
178
|
+
displayClassName
|
177
179
|
})
|
178
180
|
} : null, {
|
179
181
|
test: seperateCssModules ? /\.module\.css$/ : /\.css$/,
|
@@ -190,7 +192,8 @@ module.exports = {
|
|
190
192
|
selectorReplace,
|
191
193
|
cssHashSelectors,
|
192
194
|
classNamePrefix,
|
193
|
-
postCssPluginOrder
|
195
|
+
postCssPluginOrder,
|
196
|
+
displayClassName
|
194
197
|
})
|
195
198
|
}, {
|
196
199
|
test: /\.jpe?g$|\.gif$|\.png$/,
|
@@ -45,7 +45,8 @@ const getCSSLoaders = optionsObj => {
|
|
45
45
|
cssHashSelectors,
|
46
46
|
classNamePrefix,
|
47
47
|
postCssPluginOrder,
|
48
|
-
customClassNamePrefix
|
48
|
+
customClassNamePrefix,
|
49
|
+
displayClassName
|
49
50
|
} = optionsObj;
|
50
51
|
const {
|
51
52
|
devCssFileBountry
|
@@ -66,7 +67,7 @@ const getCSSLoaders = optionsObj => {
|
|
66
67
|
if (classNameBlob) {
|
67
68
|
cssLoaderOptions.modules.localIdentName = classNameBlob;
|
68
69
|
} else {
|
69
|
-
cssLoaderOptions.modules.getLocalIdent = (0, _cssClassNameGenerate.default)(cssUniqueness, cssHashSelectors, classNamePrefix, customClassNamePrefix, patterns);
|
70
|
+
cssLoaderOptions.modules.getLocalIdent = (0, _cssClassNameGenerate.default)(cssUniqueness, cssHashSelectors, classNamePrefix, customClassNamePrefix, patterns, displayClassName);
|
70
71
|
}
|
71
72
|
|
72
73
|
const pluginOrder = calculatePostCssPluginOrder(postCssPluginOrder, Object.keys(plugins).filter(x => plugins[x] === true)); // console.log('selector weight config : ', selectorWeightConfig);
|
@@ -19,6 +19,8 @@ var _I18nSplitPlugin = _interopRequireDefault(require("../plugins/I18nSplitPlugi
|
|
19
19
|
|
20
20
|
var _RequireVariablePublicPlugin = _interopRequireDefault(require("../plugins/RequireVariablePublicPlugin"));
|
21
21
|
|
22
|
+
var _CssOrderControlPlugin = _interopRequireDefault(require("../plugins/CssOrderControlPlugin"));
|
23
|
+
|
22
24
|
var _copyWebpackPlugin = _interopRequireDefault(require("copy-webpack-plugin"));
|
23
25
|
|
24
26
|
var _webpack = _interopRequireDefault(require("webpack"));
|
@@ -45,6 +47,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
45
47
|
const getDevPlugins = (options, publicPath) => {
|
46
48
|
const {
|
47
49
|
app: {
|
50
|
+
generateHtml,
|
48
51
|
tpFolder,
|
49
52
|
folder,
|
50
53
|
instrumentScript,
|
@@ -74,7 +77,8 @@ const getDevPlugins = (options, publicPath) => {
|
|
74
77
|
localeAttr: efcLocaleAttr
|
75
78
|
},
|
76
79
|
css: {
|
77
|
-
enableRTLSplit
|
80
|
+
enableRTLSplit,
|
81
|
+
cssOrderControler
|
78
82
|
},
|
79
83
|
i18n,
|
80
84
|
unusedFiles,
|
@@ -163,7 +167,7 @@ const getDevPlugins = (options, publicPath) => {
|
|
163
167
|
collections: true,
|
164
168
|
shorthands: true
|
165
169
|
}));
|
166
|
-
(0, _configHtmlWebpackPlugins.configHtmlWebpackPlugins)(pluginsArr, {
|
170
|
+
generateHtml && (0, _configHtmlWebpackPlugins.configHtmlWebpackPlugins)(pluginsArr, {
|
167
171
|
enableChunkHash: false,
|
168
172
|
folder,
|
169
173
|
minify: false,
|
@@ -196,6 +200,7 @@ const getDevPlugins = (options, publicPath) => {
|
|
196
200
|
mainChunkName: 'main'
|
197
201
|
}));
|
198
202
|
instrumentScript && pluginsArr.push(new _plugins.ScriptInstrumentPlugin());
|
203
|
+
cssOrderControler.enable && pluginsArr.push(new _CssOrderControlPlugin.default(cssOrderControler));
|
199
204
|
customAttributes.enable && pluginsArr.push(new _CustomAttributePlugin.CustomAttributePlugin(customAttributes));
|
200
205
|
customAttributes.enable && pluginsArr.push(new _EfcResourceCleanupPlugin.default(Object.assign({}, customAttributes, {
|
201
206
|
globalCacheObj: context
|
@@ -35,6 +35,8 @@ var _CustomAttributePlugin = require("../plugins/CustomAttributePlugin");
|
|
35
35
|
|
36
36
|
var _RtlCssPlugin = require("../plugins/RtlSplitPlugin/RtlCssPlugin");
|
37
37
|
|
38
|
+
var _CssOrderControlPlugin = _interopRequireDefault(require("../plugins/CssOrderControlPlugin"));
|
39
|
+
|
38
40
|
var _configHtmlWebpackPlugins = require("./configHtmlWebpackPlugins");
|
39
41
|
|
40
42
|
var _StatsPlugin = _interopRequireDefault(require("../plugins/StatsPlugin"));
|
@@ -49,6 +51,7 @@ const getProdPlugins = (options, publicPath = '') => {
|
|
49
51
|
enableChunkHash
|
50
52
|
} = options.app;
|
51
53
|
const {
|
54
|
+
generateHtml,
|
52
55
|
manifestFileName,
|
53
56
|
bundleAnalyze,
|
54
57
|
optimize,
|
@@ -87,7 +90,8 @@ const getProdPlugins = (options, publicPath = '') => {
|
|
87
90
|
i18n
|
88
91
|
} = options;
|
89
92
|
const {
|
90
|
-
enableRTLSplit
|
93
|
+
enableRTLSplit,
|
94
|
+
cssOrderControler
|
91
95
|
} = options.css;
|
92
96
|
const {
|
93
97
|
hasEFC: newOptionForEnableEFC,
|
@@ -174,7 +178,7 @@ const getProdPlugins = (options, publicPath = '') => {
|
|
174
178
|
to: `./${tpFolder}/`,
|
175
179
|
toType: 'dir'
|
176
180
|
}]));
|
177
|
-
(0, _configHtmlWebpackPlugins.configHtmlWebpackPlugins)(pluginsArr, {
|
181
|
+
generateHtml && (0, _configHtmlWebpackPlugins.configHtmlWebpackPlugins)(pluginsArr, {
|
178
182
|
enableChunkHash,
|
179
183
|
folder,
|
180
184
|
inject,
|
@@ -301,6 +305,7 @@ const getProdPlugins = (options, publicPath = '') => {
|
|
301
305
|
} // plugins.push(new VariableConversionCollector({}));
|
302
306
|
|
303
307
|
|
308
|
+
cssOrderControler.enable && pluginsArr.push(new _CssOrderControlPlugin.default(cssOrderControler));
|
304
309
|
customAttributes.enable && pluginsArr.push(new _CustomAttributePlugin.CustomAttributePlugin(customAttributes));
|
305
310
|
customAttributes.enable && pluginsArr.push(new _EfcResourceCleanupPlugin.default(Object.assign({}, customAttributes, {
|
306
311
|
globalCacheObj: context
|
@@ -0,0 +1,36 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
class CssOrderControlPlugin {
|
9
|
+
constructor(options) {
|
10
|
+
this.options = {
|
11
|
+
className: options.className
|
12
|
+
};
|
13
|
+
}
|
14
|
+
|
15
|
+
apply(compiler) {
|
16
|
+
// NOTE: we not using this, Reason currently this option is only need for EFC,
|
17
|
+
// So it do not needed.
|
18
|
+
const className = this.options.className;
|
19
|
+
compiler.hooks.thisCompilation.tap({
|
20
|
+
name: 'CssOrderControlPlugin',
|
21
|
+
stage: 1,
|
22
|
+
fn: compilation => {
|
23
|
+
compilation.mainTemplate.hooks.requireEnsure.tap('CssOrderControlPlugin', source => {
|
24
|
+
// const str = attributeSetTemplate(cssAttributes, 'linkTag');
|
25
|
+
const replacedStr = source.replace('head.appendChild(linkTag);', `var referenceTag = document.getElementById('${className}');
|
26
|
+
head.insertBefore(linkTag, referenceTag);`); // console.log({ s: source, r: replacedStr });
|
27
|
+
|
28
|
+
return replacedStr;
|
29
|
+
});
|
30
|
+
}
|
31
|
+
});
|
32
|
+
}
|
33
|
+
|
34
|
+
}
|
35
|
+
|
36
|
+
exports.default = CssOrderControlPlugin;
|
package/lib/schemas/index.js
CHANGED
@@ -52,6 +52,10 @@ var _default = {
|
|
52
52
|
propertiesFolder: null
|
53
53
|
},
|
54
54
|
css: {
|
55
|
+
cssOrderControler: {
|
56
|
+
enable: false,
|
57
|
+
className: 'customCss'
|
58
|
+
},
|
55
59
|
enableRTLSplit: false,
|
56
60
|
valueReplacer: null,
|
57
61
|
//valueReplacer: [
|
@@ -126,6 +130,14 @@ var _default = {
|
|
126
130
|
cssDirStatement: null
|
127
131
|
},
|
128
132
|
app: {
|
133
|
+
generateHtml: {
|
134
|
+
value: true,
|
135
|
+
cli: 'generate_html'
|
136
|
+
},
|
137
|
+
displayClassName: {
|
138
|
+
value: false,
|
139
|
+
cli: 'display_class_name'
|
140
|
+
},
|
129
141
|
moduleResolvePath: {
|
130
142
|
value: '@zohodesk/client_packages_group',
|
131
143
|
cli: 'module_resolve_path'
|
@@ -25,19 +25,22 @@ function requireLocalOrGlobal(moduleName, opts = {}) {
|
|
25
25
|
const {
|
26
26
|
local = true
|
27
27
|
} = opts;
|
28
|
-
const isRelativePath = moduleName[0] === '.';
|
28
|
+
const isRelativePath = moduleName[0] === '.';
|
29
|
+
console.log(moduleName, 'module name'); // NOTE: if starts with . then it only mean local
|
29
30
|
|
30
31
|
if (isRelativePath) {
|
31
32
|
global = false;
|
32
33
|
}
|
33
34
|
|
34
35
|
try {
|
35
|
-
const paths = [local && process.cwd(), global && globalNodeModules].filter(Boolean);
|
36
|
+
const paths = [local && process.cwd(), global && globalNodeModules].filter(Boolean);
|
37
|
+
console.log('path', process.cwd(), local, global); // x({ paths, globalNodeModules, global, local, opts });
|
36
38
|
|
37
39
|
const moduleResolvePath = require.resolve(moduleName, {
|
38
40
|
paths
|
39
41
|
});
|
40
42
|
|
43
|
+
console.log(moduleResolvePath, 'moduleResolvePath');
|
41
44
|
return require(moduleResolvePath);
|
42
45
|
} catch (error) {
|
43
46
|
// NOTE: since we return null we can check out side
|
@@ -62,7 +62,7 @@ function patternBasedClass({
|
|
62
62
|
var _default = (unique = true, {
|
63
63
|
filenames,
|
64
64
|
packages
|
65
|
-
}, classNamePrefix, customClassNamePrefix, patterns) => (context, localIdentName, localName) => {
|
65
|
+
}, classNamePrefix, customClassNamePrefix, patterns, displayClassName) => (context, localIdentName, localName) => {
|
66
66
|
// console.log(patterns, context.resourcePath);
|
67
67
|
// NOTE: in build machine we use date as folder path.
|
68
68
|
// So every time we create new build there is path will alway different
|
@@ -92,6 +92,11 @@ var _default = (unique = true, {
|
|
92
92
|
*/
|
93
93
|
|
94
94
|
|
95
|
+
if (displayClassName) {
|
96
|
+
return `${fileNameWithoutExt}__${localName}`;
|
97
|
+
} // return cleanFileName
|
98
|
+
|
99
|
+
|
95
100
|
if (context.resourcePath.endsWith('.plain.css')) {
|
96
101
|
return localName;
|
97
102
|
}
|
package/npm-shrinkwrap.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zohodesk/react-cli",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.26-exp.1",
|
4
4
|
"lockfileVersion": 1,
|
5
5
|
"requires": true,
|
6
6
|
"dependencies": {
|
@@ -2010,6 +2010,17 @@
|
|
2010
2010
|
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz",
|
2011
2011
|
"integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
|
2012
2012
|
},
|
2013
|
+
"@reduxjs/toolkit": {
|
2014
|
+
"version": "2.3.0",
|
2015
|
+
"resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.3.0.tgz",
|
2016
|
+
"integrity": "sha512-WC7Yd6cNGfHx8zf+iu+Q1UPTfEcXhQ+ATi7CV1hlrSAaQBdlPzg7Ww/wJHNQem7qG9rxmWoFCDCPubSvFObGzA==",
|
2017
|
+
"requires": {
|
2018
|
+
"immer": "^10.0.3",
|
2019
|
+
"redux": "^5.0.1",
|
2020
|
+
"redux-thunk": "^3.1.0",
|
2021
|
+
"reselect": "^5.1.0"
|
2022
|
+
}
|
2023
|
+
},
|
2013
2024
|
"@sindresorhus/is": {
|
2014
2025
|
"version": "0.14.0",
|
2015
2026
|
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
@@ -2395,10 +2406,11 @@
|
|
2395
2406
|
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
|
2396
2407
|
},
|
2397
2408
|
"@zohodesk/client_packages_group": {
|
2398
|
-
"version": "1.0.2",
|
2399
|
-
"resolved": "https://registry.npmjs.org/@zohodesk/client_packages_group/-/client_packages_group-1.0.2.tgz",
|
2400
|
-
"integrity": "sha512-
|
2409
|
+
"version": "1.0.2-exp.4-redux",
|
2410
|
+
"resolved": "https://registry.npmjs.org/@zohodesk/client_packages_group/-/client_packages_group-1.0.2-exp.4-redux.tgz",
|
2411
|
+
"integrity": "sha512-wqm9hVjE8xtlY19PLS8QWtUlzcv+jdVYXr4Fh2QwDkyjA0tyTcHl4elGDQSQcIfrztr/5gET7Mvx7naTmfsH2A==",
|
2401
2412
|
"requires": {
|
2413
|
+
"@reduxjs/toolkit": "^2.2.8",
|
2402
2414
|
"@zohodesk/datetimejs": "1.0.0-beta.9",
|
2403
2415
|
"@zohodesk/normalizer": "1.0.2",
|
2404
2416
|
"core-js": "3.6.5",
|
@@ -2418,11 +2430,8 @@
|
|
2418
2430
|
"react-router": "5.2.0",
|
2419
2431
|
"react-router-redux": "4.0.8",
|
2420
2432
|
"react-transition-group": "2.7.1",
|
2421
|
-
"redux": "4.0.5",
|
2422
2433
|
"redux-logger": "3.0.6",
|
2423
2434
|
"redux-router-middleware": "1.0.0-beta.22",
|
2424
|
-
"redux-thunk": "2.3.0",
|
2425
|
-
"reselect": "4.0.0",
|
2426
2435
|
"selectn": "1.1.2",
|
2427
2436
|
"simple-normalizr": "1.2.5",
|
2428
2437
|
"velocity-react": "1.4.3"
|
@@ -7157,6 +7166,11 @@
|
|
7157
7166
|
"resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
|
7158
7167
|
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
|
7159
7168
|
},
|
7169
|
+
"immer": {
|
7170
|
+
"version": "10.1.1",
|
7171
|
+
"resolved": "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz",
|
7172
|
+
"integrity": "sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw=="
|
7173
|
+
},
|
7160
7174
|
"import-cwd": {
|
7161
7175
|
"version": "2.1.0",
|
7162
7176
|
"resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
|
@@ -9775,17 +9789,17 @@
|
|
9775
9789
|
},
|
9776
9790
|
"dependencies": {
|
9777
9791
|
"@babel/runtime": {
|
9778
|
-
"version": "7.
|
9779
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.
|
9780
|
-
"integrity": "sha512-
|
9792
|
+
"version": "7.26.0",
|
9793
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
|
9794
|
+
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
|
9781
9795
|
"requires": {
|
9782
|
-
"regenerator-runtime": "^0.
|
9796
|
+
"regenerator-runtime": "^0.14.0"
|
9783
9797
|
}
|
9784
9798
|
},
|
9785
9799
|
"regenerator-runtime": {
|
9786
|
-
"version": "0.
|
9787
|
-
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.
|
9788
|
-
"integrity": "sha512-
|
9800
|
+
"version": "0.14.1",
|
9801
|
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
9802
|
+
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
9789
9803
|
}
|
9790
9804
|
}
|
9791
9805
|
},
|
@@ -11802,9 +11816,9 @@
|
|
11802
11816
|
"integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="
|
11803
11817
|
},
|
11804
11818
|
"path-to-regexp": {
|
11805
|
-
"version": "1.
|
11806
|
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.
|
11807
|
-
"integrity": "sha512-
|
11819
|
+
"version": "1.9.0",
|
11820
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz",
|
11821
|
+
"integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==",
|
11808
11822
|
"requires": {
|
11809
11823
|
"isarray": "0.0.1"
|
11810
11824
|
}
|
@@ -11921,13 +11935,9 @@
|
|
11921
11935
|
}
|
11922
11936
|
},
|
11923
11937
|
"redux": {
|
11924
|
-
"version": "
|
11925
|
-
"resolved": "https://registry.npmjs.org/redux/-/redux-
|
11926
|
-
"integrity": "sha512-
|
11927
|
-
"requires": {
|
11928
|
-
"loose-envify": "^1.4.0",
|
11929
|
-
"symbol-observable": "^1.2.0"
|
11930
|
-
}
|
11938
|
+
"version": "5.0.1",
|
11939
|
+
"resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
|
11940
|
+
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w=="
|
11931
11941
|
},
|
11932
11942
|
"redux-logger": {
|
11933
11943
|
"version": "3.0.6",
|
@@ -11951,9 +11961,9 @@
|
|
11951
11961
|
"integrity": "sha512-BNIBdAgbKAfe3cv4IeiECTbCZlllh45HvfhWTOB1gm1eFWgAGOb2vEOTzfBM/g46T19znkxn/7ravjvazckFfw=="
|
11952
11962
|
},
|
11953
11963
|
"redux-thunk": {
|
11954
|
-
"version": "
|
11955
|
-
"resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-
|
11956
|
-
"integrity": "sha512-
|
11964
|
+
"version": "3.1.0",
|
11965
|
+
"resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz",
|
11966
|
+
"integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw=="
|
11957
11967
|
},
|
11958
11968
|
"regenerate": {
|
11959
11969
|
"version": "1.4.2",
|
@@ -12178,9 +12188,9 @@
|
|
12178
12188
|
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
|
12179
12189
|
},
|
12180
12190
|
"reselect": {
|
12181
|
-
"version": "
|
12182
|
-
"resolved": "https://registry.npmjs.org/reselect/-/reselect-
|
12183
|
-
"integrity": "sha512-
|
12191
|
+
"version": "5.1.1",
|
12192
|
+
"resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz",
|
12193
|
+
"integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w=="
|
12184
12194
|
},
|
12185
12195
|
"resolve": {
|
12186
12196
|
"version": "1.22.1",
|
@@ -13140,11 +13150,6 @@
|
|
13140
13150
|
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
13141
13151
|
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
|
13142
13152
|
},
|
13143
|
-
"symbol-observable": {
|
13144
|
-
"version": "1.2.0",
|
13145
|
-
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
|
13146
|
-
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
|
13147
|
-
},
|
13148
13153
|
"symbol-tree": {
|
13149
13154
|
"version": "3.2.4",
|
13150
13155
|
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
@@ -13342,9 +13347,9 @@
|
|
13342
13347
|
}
|
13343
13348
|
},
|
13344
13349
|
"tiny-invariant": {
|
13345
|
-
"version": "1.3.
|
13346
|
-
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.
|
13347
|
-
"integrity": "sha512
|
13350
|
+
"version": "1.3.3",
|
13351
|
+
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
|
13352
|
+
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="
|
13348
13353
|
},
|
13349
13354
|
"tiny-warning": {
|
13350
13355
|
"version": "1.0.3",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zohodesk/react-cli",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.26-exp.2",
|
4
4
|
"description": "A CLI tool for build modern web application and libraries",
|
5
5
|
"scripts": {
|
6
6
|
"init": "node ./lib/utils/init.js",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@babel/preset-env": "7.11.0",
|
42
42
|
"@babel/preset-react": "7.10.4",
|
43
43
|
"@babel/runtime": "7.11.2",
|
44
|
-
"@zohodesk/client_packages_group": "1.0.2",
|
44
|
+
"@zohodesk/client_packages_group": "1.0.2-exp.4-redux",
|
45
45
|
"@zohodesk/eslint-plugin-react-performance": "1.0.3",
|
46
46
|
"@zohodesk/eslint-plugin-zsecurity": "0.0.1-beta.4",
|
47
47
|
"@zohodesk/postcss-rtl": "1.5.2",
|