@zohodesk/react-cli 1.1.8-exp.2 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +180 -180
  3. package/.prettierrc +6 -6
  4. package/Changelog.md +1019 -1019
  5. package/README.md +1293 -1293
  6. package/bin/cli.js +501 -497
  7. package/docs/ComposeMinification.md +13 -13
  8. package/docs/CustomChunks.md +29 -29
  9. package/docs/DevServerPort.md +39 -39
  10. package/docs/DevStart.md +18 -18
  11. package/docs/HoverActive.md +12 -12
  12. package/docs/InstallNode.md +28 -28
  13. package/docs/MarkdownParser.md +17 -17
  14. package/docs/ReactLive.md +13 -13
  15. package/docs/SelectorWeight.md +8 -8
  16. package/docs/TODOS.md +10 -10
  17. package/docs/ValueReplacer.md +60 -60
  18. package/docs/VariableConversion.md +729 -729
  19. package/docs/patternFiltering.md +56 -56
  20. package/docs/warnings_while_install.txt +35 -35
  21. package/files/eslintrc.js +62 -62
  22. package/files/prettierrc.js +3 -3
  23. package/lib/configs/webpack.css.umd.config.js +4 -4
  24. package/lib/configs/webpack.dev.config.js +0 -18
  25. package/lib/configs/webpack.docs.config.js +0 -17
  26. package/lib/deprecationLogger.js +3 -3
  27. package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
  28. package/lib/loaderUtils/getCSSLoaders.js +58 -62
  29. package/lib/loaders/workerLoader.js +9 -9
  30. package/lib/pluginUtils/getDevPlugins.js +5 -5
  31. package/lib/pluginUtils/getProdPlugins.js +5 -5
  32. package/lib/plugins/CustomAttributePlugin.md +35 -35
  33. package/lib/plugins/EFCPlugin.md +6 -6
  34. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  35. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  36. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  37. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  38. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
  39. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  40. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  41. package/lib/plugins/ReportGeneratePlugin.js +8 -6
  42. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  43. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  44. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  45. package/lib/plugins/SelectorPlugin.js +29 -29
  46. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  47. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  48. package/lib/plugins/UnusedFilesFindPlugin.js +7 -5
  49. package/lib/plugins/VariableConversionCollector.js +59 -59
  50. package/lib/plugins/utils/fileHandling.js +8 -4
  51. package/lib/plugins/variableConvertorUtils.js +9 -9
  52. package/lib/postcss-plugins/RTLSplitPlugin.js +10 -10
  53. package/lib/postcss-plugins/__test__/test1Input.css +38 -38
  54. package/lib/postcss-plugins/__test__/test1Output.css +38 -38
  55. package/lib/postcss-plugins/hoverActivePlugin.js +3 -3
  56. package/lib/sh/pre-commit.sh +34 -34
  57. package/lib/sh/reportPublish.sh +45 -45
  58. package/lib/utils/buildstats.html +148 -148
  59. package/lib/utils/cssClassNameGenerate.js +13 -13
  60. package/lib/utils/deprecationSupport.js +83 -78
  61. package/lib/utils/getOptions.js +2 -2
  62. package/lib/utils/index.js +14 -12
  63. package/lib/utils/initPreCommitHook.js +5 -5
  64. package/lib/utils/log.js +11 -0
  65. package/lib/utils/pullOrigin.js +3 -3
  66. package/lib/utils/reinstallDependencies.js +3 -3
  67. package/lib/utils/resultSchema.json +73 -73
  68. package/lib/utils/switchBranch.js +4 -2
  69. package/npm-shrinkwrap.json +33393 -14454
  70. package/npm8.md +9 -9
  71. package/package.json +123 -123
  72. package/postpublish.js +8 -8
  73. package/templates/app/.eslintrc.js +140 -140
  74. package/templates/app/README.md +12 -12
  75. package/templates/app/app/index.html +24 -24
  76. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  77. package/templates/app/app/properties/i18nkeys.json +3 -3
  78. package/templates/app/docs/all.html +69 -69
  79. package/templates/app/mockapi/index.js +18 -18
  80. package/templates/app/package.json +37 -37
  81. package/templates/app/src/actions/SampleActions/index.js +37 -37
  82. package/templates/app/src/actions/index.js +65 -65
  83. package/templates/app/src/appUrls.js +19 -19
  84. package/templates/app/src/components/Alert/Alert.js +134 -134
  85. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  86. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  87. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  88. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  89. package/templates/app/src/components/Sample/SampleList.js +61 -61
  90. package/templates/app/src/components/Slider/Slider.css +41 -41
  91. package/templates/app/src/components/Slider/Slider.js +55 -55
  92. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  93. package/templates/app/src/containers/AppContainer/index.js +96 -96
  94. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  95. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  96. package/templates/app/src/containers/DevTools/index.js +10 -10
  97. package/templates/app/src/containers/Header/index.js +67 -67
  98. package/templates/app/src/containers/Header/index.module.css +43 -43
  99. package/templates/app/src/containers/Redirect/index.js +63 -63
  100. package/templates/app/src/containers/Redirector/index.js +47 -47
  101. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  102. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  103. package/templates/app/src/historyChange.js +5 -5
  104. package/templates/app/src/index.html +10 -10
  105. package/templates/app/src/index.js +24 -24
  106. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  107. package/templates/app/src/reducers/alertData.js +11 -11
  108. package/templates/app/src/reducers/index.js +6 -6
  109. package/templates/app/src/reducers/samples.js +19 -19
  110. package/templates/app/src/store/configureStore.dev.js +51 -51
  111. package/templates/app/src/store/configureStore.js +5 -5
  112. package/templates/app/src/store/configureStore.prod.js +26 -26
  113. package/templates/app/src/util/Common.js +5 -5
  114. package/templates/app/src/util/RequestAPI.js +132 -132
  115. package/templates/docs/all.html +250 -250
  116. package/templates/docs/component.html +179 -179
  117. package/templates/docs/components.html +222 -222
  118. package/templates/docs/css/b.min.css +6 -6
  119. package/templates/docs/css/component.css +42 -42
  120. package/templates/docs/css/componentTest.css +6 -6
  121. package/templates/docs/css/hopscotch.css +585 -585
  122. package/templates/docs/css/markdown.css +202 -202
  123. package/templates/docs/css/style.css +1022 -1022
  124. package/templates/docs/impactReportTemplate.html +154 -154
  125. package/templates/docs/index.html +1502 -1502
  126. package/templates/docs/js/active-line.js +72 -72
  127. package/templates/docs/js/b.min.js +7 -7
  128. package/templates/docs/js/codemirror.js +9680 -9680
  129. package/templates/docs/js/designTokens.js +334 -334
  130. package/templates/docs/js/j.min.js +4 -4
  131. package/templates/docs/js/javascript.js +874 -874
  132. package/templates/docs/js/matchbrackets.js +145 -145
  133. package/result.json +0 -1
  134. package/unittest/index.html +0 -37
package/README.md CHANGED
@@ -1,1293 +1,1293 @@
1
- # React CLI
2
-
3
- A CLI tool for build modern web application and libraries
4
-
5
- # Installation
6
-
7
- Below Steps:-
8
-
9
- > `npm i -g @zohodesk/react-cli`
10
-
11
- # Usage
12
-
13
- ## Step 1
14
-
15
- > `mkdir <your-project-folder> && cd mkdir <your-project-folder>`
16
-
17
- ## Step 2
18
-
19
- - create `package.json` file
20
- - add this to your `package.json`
21
-
22
- ```json
23
- {
24
- "scripts": {
25
- "start": "react-cli start",
26
- "build": "react-cli build"
27
- }
28
- }
29
- ```
30
-
31
- ## Step 3
32
-
33
- - create below files
34
- - `src/index.js`
35
- - `src/index.html`
36
-
37
- ## Step 4
38
-
39
- Now to run app
40
-
41
- > `npm run start`
42
-
43
- ---
44
-
45
- # Change Logs
46
- # 1.1.9 (18-7-2023)
47
-
48
- **Features:-**
49
-
50
- - we have added config file support for react-cli schema. the default config file name `build.config.js` support added. In `build.config.js` you must export configuration object under `config` key. And Note: `build.config.js` is high priority then `package.json` `react-cli` config.
51
- - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
52
- only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
53
- - added support for pattern as function for custom chunks split logic.
54
- - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
55
- - added `postCssPluginOrder` feature :
56
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "false", default plugin order will be followed.
57
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "true", order preserved in `plugins` Object will be considered.
58
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to an array with plugins in a custom order, the custom order will be considered.
59
-
60
- - We use the same plugin names as in `patterns` for the plugins to execute successfully.
61
-
62
-
63
- **Issue Fix**
64
- - fixed file path separator issue with split chunks config for vendor exclude list for windows (that was work well for mac and ubuntu only issue in windows).
65
- - fixed cssUniqueness pattern not working in docs.
66
-
67
- **Changes**
68
- - previously all custom chunks are enforce true, no we have given support for enforce false for chunks on splitChunks config.
69
-
70
- # 1.1.8
71
-
72
- **Issue Fix**
73
- - Docs fix for Selector Replace 'always require arguement' issue.
74
-
75
- # 1.1.7
76
-
77
- **Feature**
78
- - Markdown parser feature added in docs
79
- For more info please refer to :
80
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/MarkdownParser.md)
81
-
82
-
83
- # 1.1.6-exp.2
84
- - fixed file path separator issue with split chunks config for vendor exclude list.
85
- - added support for not doing enforce true for chunks on splitchunks config.
86
-
87
- # 1.1.5-exp.5
88
- - fixed the issues regarding custom chunks base config schema.
89
-
90
- # 1.1.5-exp.4
91
- - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
92
-
93
- # 1.1.5-exp.3
94
- - added options to split chunks base config
95
- - added support for passing custom chunks split logic as function.
96
- # 1.1.6
97
-
98
- **Issue Fix**
99
- - local install react-cli spawnSync Error fix in npm 8
100
- - babel version update issue fix (Cannot read properties of undefined (reading 'file')) and (BABEL_TRANSFORM_ERROR)
101
-
102
- # 1.1.5-exp.2
103
-
104
- **Issue Fix**
105
- - local install react-cli spawnSync Error fix in npm 8
106
-
107
- # 1.1.5
108
-
109
- **Issue Fix**
110
-
111
- - include pattern fix for variable converter plugin fixed
112
-
113
- # 1.1.4
114
-
115
- **Issue Fix**
116
- - global install react-cli spawnSync Error fix
117
- - `0px` variable value conversion issue fixed
118
- - pattern exclude for postcss plugins case fixed
119
-
120
- # 1.1.3
121
-
122
- **Issue Fix**
123
- - local install react-cli spawnSync Error fix
124
-
125
- # 1.1.2
126
-
127
- **Issue Fix**
128
-
129
- - ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
130
-
131
- # 1.1.1
132
-
133
- **Issue Fix**
134
- - docs component name incorrect in windows, when using --enableReactLive issue fixed.
135
-
136
- **Feature Update**
137
- - Support for desk-library to use Selector Replace plugin using individual script. To use `react-cli selectorReplacer [source] [target]`
138
-
139
- # 1.1.0
140
-
141
- **Feature Update**
142
- - Support for desk-library to use variable convertion plugin using individual script. To use `react-cli variableConverter [source] [target]`
143
- - pattern filter changes, new filter system instead of exclude to include or exclude files for plugins.
144
- For more info please refer to :
145
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/patternFiltering.md)
146
- - React Live feature implemented for Docs.
147
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ReactLive.md)
148
-
149
- # 1.0.3-beta.1
150
-
151
- **Issue Fix**
152
- - nock api not working issue fixed. This error throwing in @zohodesk/react-cli@1.0.2 version. but working in older versions ( 0.0.1-beta.178 )
153
-
154
-
155
- # 1.0.3
156
-
157
- **Feature Update**
158
- - Support for global httpsCerts usage
159
- - Support for global client_packages_group usage
160
- - custom attribute for dynamically loading chunks, In this version we merged changes from [0.0.1-beta.167.1](#0.0.1-beta.167.1).
161
- **Package Update**
162
- - @zohodesk/client_packages_group@**1.0.1** ==> @zohodesk/client_packages_group@**1.0.2**
163
-
164
-
165
-
166
- # 1.0.2
167
-
168
- **Feature Update**
169
- - Selector replace plugin made as a custom postcss-plugin with update to code that was unpublished in package.
170
-
171
- # 1.0.1
172
-
173
- **Issue Fix**
174
- - variable conversion for px and var(--) values in same declaration was not supported, now it is supported.
175
- - package-lock.json removed from `.npmignore`
176
-
177
- **Feature Update**
178
- - exclude added to Selector Plugin
179
- # 1.0.0
180
- ## Major Release
181
- **Changes:**
182
- - File support added for `.webp` for `docs`, `dev` and `prod` mode
183
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
184
-
185
- **Breaking Changes:**
186
-
187
- - We have remove ssl certificate for security reasons.
188
- So default https server won't run.
189
- In order to make it work as before you need to specify two things
190
- 1. install `@zohodesk-private/client_dev_cert`
191
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
192
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`. and mock wms `/wmsmockapi` won't work.
193
- So Please be carefull when you update this version or above without proper configaration.
194
-
195
-
196
- # 0.0.1-beta.178
197
-
198
- **Changes:**
199
-
200
- - File support added for `.webp` for `docs`, `dev` and `prod` mode
201
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
202
-
203
- **Breaking Changes:**
204
-
205
- - We have remove ssl certificate for security reasons.
206
- So default https server won't run.
207
- In order to make it work as before you need to specify two things
208
- 1. install `@zohodesk-private/client_dev_cert`
209
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
210
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
211
- So Please be carefull when you update this version or above without proper configaration.
212
-
213
- # 0.0.1-exp.178.2
214
-
215
- **Changes:**
216
-
217
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
218
-
219
- # 0.0.1-exp.178.1
220
-
221
- **Breaking Changes:**
222
-
223
- - We have remove ssl certificate for security reasons.
224
- So default https server won't run.
225
- In order to make it work as before you need to specify two things
226
- 1. install `@zohodesk-private/client_dev_cert`
227
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
228
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
229
- So Please be carefull when you update this version or above without proper configaration.
230
-
231
- # 0.0.1-beta.177
232
-
233
- **Changes:**
234
-
235
- - We have added extra new Error option `MULTIPLE_OCCURANCES` support for **convert px to custom variables**.
236
- - In case css --variables are not assigned an error will be thrown and logged in `.cli/logs/unassignedVariables.log`. The unassigned variables can be manually assigned in `variableMapping.json` through two keys :
237
- - `changes` : for the variables that have to be converted, manual values can be added ( eg. "--wms_height": "height" )
238
- - `ignore` : for the variables that do not have to be considered, they can be added as keys with some value in `ignore` key (eg. "--gc_widget_video_bg": "undefined"). These values will be ignored.
239
- - strict mode can be enabled for checking --variables in `cssVariableReplacementOptions.strictMode`
240
- For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
241
-
242
- - and this version has same as `0.0.1-exp.176.12`, `0.0.1-exp.176.11`
243
-
244
- # 0.0.1-exp.176.12
245
-
246
- **Changes:**
247
-
248
- - Earlier versions of react-cli, we have been putting video files under images folder in build output, now, we have moved the video files under videos folder in build output.
249
-
250
- # 0.0.1-exp.176.11
251
-
252
- **Issue Fix:**
253
-
254
- - When we use `react-cli.app.publicPaths.callback` this option and video files import, in place of publicPath url, **null** was there instead of file type `video` issue fixed.
255
-
256
- # 0.0.1-beta.176
257
-
258
- **Features:**
259
-
260
- - we have added feature to **increase Selector weight** for all css classes in your project during build time.
261
- To enable this feature you have to set `react-cli.app.plugins.selectorWeight` as `true` in **package.json**.
262
- For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/SelectorWeight.md)
263
- - Updates to variable replacement are given :
264
- - css variables with -- are now supported due to the webpack plugin `VariableConversionCollector` that is generated for the same.
265
- - `DECIMAL_CHECK`, `DECIMAL_REJECT` are two new errors supported.
266
- - support for text-indent, clip, flex, flex-basis, row-gap, column-gap, gap properties are now given.
267
- For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
268
-
269
- # 0.0.1-beta.175
270
-
271
- **Issue Fix:-**
272
-
273
- - When we use "hoverActive" @import in css not working issue fixed
274
-
275
- **Features:**
276
-
277
- - `minifiy` option supported for minimize index.html file in during build time. You can use this option as "react-cli.app.htmlTemplate.minify" the options are same as https://github.com/jantimon/html-webpack-plugin#minification
278
-
279
- # 0.0.1-beta.174
280
-
281
- cli has been updated to fix compose issue faced when classname:hover exists and classname does not before compose
282
-
283
- **Issue Fix:-**
284
-
285
- - In react-cli version `0.0.1-beta.173`, when we use `start` command throws error issue fixed
286
- - while using `cssVariableReplacementOptions`, compose issue faced in css files, when classname:hover exists and classname does not exist issue fixed
287
-
288
- **Feature:-**
289
-
290
- - `react-cli.test.classnameFormat` option added to change CssModules (Ex: import style from "./a.module.css" ) className transform template unittest case.
291
- `classnameFormat` default value `[classname]` you can customize it. Example: `[classname]-[hash]`
292
-
293
- **Changes:-**
294
-
295
- - `jsonFile_test_*.json` files deleted after they used.
296
-
297
- # 0.0.1-beta.173
298
-
299
- **Features:**
300
-
301
- - we have added feature to **convert px to custom variables** for all css files in your project during build time.
302
- To enable this feature you have to set `react-cli.app.plugins.cssVariableReplacement` as `true` in **package.json**.
303
-
304
- Conversion for css Variables from Variables to px in Supportapp completed (`variableIgnore.js` && `pxParserPostcss.js` to be referred to), and px to custom variables through the new `variableModificationPlugin`. Error Log generation can also be converted on enabling
305
-
306
- For an more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
307
-
308
- # 0.0.1-beta.172
309
-
310
- We have renamed some options, For Our future features convenience.
311
- We have given fallback support.
312
- Deprecation Warnings:-
313
-
314
- - `react-cli.app.hasRTL` ==> `react-cli.app.plugins.hasRTL`
315
- - `react-cli.app.rtlExclude` ==> `react-cli.app.exclude.rtl`
316
-
317
- - `react-cli.docs.hasRTL` ==> `react-cli.docs.plugins.hasRTL`
318
- - `react-cli.docs.rtlExclude` ==> `react-cli.docs.exclude.rtl`
319
- these options have fallback support.
320
-
321
- # 0.0.1-beta.171
322
-
323
- Features added :
324
-
325
- 1. `react-cli.app.mediaQueryHoverActiveString` and `react-cli.docs.mediaQueryHoverActiveString` templates support added for @media(hover: hover) and @media(hover: none) queries. We can modify these to modify respective queries.
326
-
327
- # 0.0.1-beta.170
328
-
329
- this version has same as `0.0.1-exp.169.1`, `0.0.1-exp.169.2`
330
-
331
- # 0.0.1-exp.169.2
332
-
333
- 1. flags are converted to one variable 'plugin' and used in getCssLoaders.js.
334
- 2. files for exclusion can be put in seperate arrays in 'exclude' present in package.json.
335
- 3. `combinerMq` has been converted to `combinerMediaQuery` for clarity.
336
-
337
- # 0.0.1-exp.169.1
338
-
339
- File support added for mp4 for docs dev and prod mode
340
-
341
- # 0.0.1-beta.169
342
-
343
- this version has same as `0.0.1-exp.168.1`, `0.0.1-exp.168.2`, `0.0.1-exp.168.3` and below and some minor changes
344
-
345
- 1. `--efc_version=v3` flag added for change efc version via commmand line option
346
- 2. `hoverActive` flag added for conversion from usual hover to @media(hover:hover) and @media(hover:none) queries for hover support in mobile.
347
- 3. `combinerMq` flag added for combination of the media queries that might be appended or existing media queries that are duplicates to create one media query with all rules put together.
348
-
349
- # 0.0.1-exp.168.3
350
-
351
- Changes :
352
-
353
- 1. code optimization ( made functions for the hoverActive cases making it more easier to access)
354
- 2. handled `hover:ignore`, `active:ignore`, `hoverActive:ignore` cases for usual queries and media queries
355
-
356
- # 0.0.1-exp.168.2
357
-
358
- Changes :
359
-
360
- 1. hoverActive case handled with postcss `hover:hover` media query and `hover:none` media query is added
361
- 2. flag for hoverActive used to add/remove postcss changes
362
-
363
- # 0.0.1-exp.168.1
364
-
365
- Changes:-
366
-
367
- 1. `cliRootPath` option removed `react-cli.app.cliRootPath` in `package.json`
368
- Due to the reason we updated our logic to find package's executable path.
369
- 2. `--efc_output_file=efc-sdk-[version].js` option added to modify efc output file by terminal
370
- 3. added logic to print error message during command run, Previously when executable not found error messages not printed
371
-
372
- # 0.0.1-beta.168
373
-
374
- Changes:-
375
-
376
- 1. `enableChunkHash` option enabled for dev mode, use it as `react-cli.app.enableChunkHash` in `package.json`
377
- 2. `--enable_efc=true` option added to enable efc by terminal
378
- 3. unwanted pem files removed
379
-
380
- # 0.0.1-exp.167.1
381
-
382
- Features:-
383
-
384
- - In docs we have added `Description` for Component Props- check out it in `PropTypes` tab
385
-
386
- # 0.0.1-beta.167.1
387
- In this version we merged changes from [0.0.1-betaa.138.1](#0.0.1-betaa.138.1).
388
- and with [0.0.1-beta.167](#0.0.1-beta.167) version changes.
389
-
390
- # 0.0.1-beta.167
391
-
392
- SSL certificate update
393
- this version has same as `0.0.1-exp.166.1`, `0.0.1-exp.166.2` and below and some minor changes
394
- Features:-
395
-
396
- - `--shallow_clone` option to `react-cli clone` this option will be usefull for shallow cloning repos in build time we don't need commit messages it will be 2x fast this way
397
- - Example `react-cli clone --clone_type=git --clone_url=https://some.url --shallow_clone`
398
- - `cliRootPath` option added for npm workspace related path problems
399
- - Usage `package.json` , "react-cli" => "cliRootPath" stright key
400
- - `unstableDepsInverse` option added for use app need library first priority over react-cli packages
401
- - Usage `package.json` , "react-cli" => "unstableDepsInverse" stright key
402
-
403
- Issue Fix :-
404
-
405
- - In devmode initial html not recived after second rebuild issue fix.
406
- - typo fix `devBulid` to `devBuild`.
407
- - `disableES5Transpile` option missed in docs now added.
408
- - docs libAlias not work as app for example in app we always take `es` folder to build for treshaking and reasons,
409
- But that option not enabled in docs. now it is enabled.
410
- - In `react-cli devbuild` command options not working properly,
411
- when above command run via terminal not via npm run script options not working
412
- So we send that options to webpack then it works as expected.
413
- this behaviour need to check across os and need to be cross check with other commends as well for now we only fixed this
414
-
415
- # 0.0.1-exp.166.2
416
-
417
- Changes:-
418
-
419
- - `-w` option (watch option) added for `react-cli rtl`
420
- - Example `react-cli rtl ./src ./lib -w`
421
- <!-- need to handle `react-cli rtl` options correctly -->
422
- - disableES5Transpile option libAlias added for docs
423
-
424
- # 0.0.1-exp.166.1
425
-
426
- Changes:-
427
-
428
- - `__testUtils__/globals.js` to jest is not mantatory
429
- - disableES5Transpile option libAlias added
430
-
431
- # 0.0.1-beta.166
432
-
433
- this version has same as `# 0.0.1-exp.164.1`, `# 0.0.1-exp.164.2` and below and some minor changes
434
-
435
- - google chorme cors preflight issue fix
436
-
437
- # 0.0.1-beta.165
438
-
439
- - `valueReplacer` option added in shemas for font name replace related issue handling, for more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ValueReplacer.md)
440
- - `valuereplacer` option added in react-cli it takes three
441
- 1. sourceDir
442
- 2. distDir
443
- 3. `copyAll` is boolean flag which is for copy all other file or not. "true" means copy all files.
444
-
445
- # 0.0.1-exp.164.1
446
-
447
- - extra features in custom chunks reffer [this](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/CustomChunks.md)
448
-
449
- # 0.0.1-exp.164.2
450
-
451
- - `devbuild` option add to react cli
452
-
453
- # 0.0.1-beta.164
454
-
455
- - typo fix
456
-
457
- # 0.0.1-beta.163
458
-
459
- - **Issue Fix:-**
460
-
461
- - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
462
- - jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
463
-
464
- - **Features :-**
465
- - feature added for pre process logic
466
- - tailer made requirement for preprocess, just write node js file
467
- - mention file in `"react-cli" => "preprocess" => "runner"`
468
- - option parse logic added for react-cli (exprimental)
469
- - `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
470
-
471
- # 0.0.1-exp.162.2
472
-
473
- - **Optimazation:-**
474
- - double time minimize optimazation
475
-
476
- # 0.0.1-beta.162.1
477
-
478
- - **Issue Fix:-**
479
- - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
480
-
481
- # 0.0.1-beta.161.1
482
-
483
- - **Features :-**
484
- - feature added for pre process logic
485
- - tailer made requirement for preprocess, just write node js file
486
- - mention file in `"react-cli" => "preprocess" => "runner"`
487
- - option parse logic added for react-cli (exprimental)
488
-
489
- # 0.0.1-beta.162
490
-
491
- - @zohodesk/datetimejs package updated to beta.8
492
-
493
- # 0.0.1-beta.161
494
-
495
- - **Features :-**
496
- - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
497
- - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
498
- - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
499
- - `getInitalAssets` this function has two arguments `assetsType`, `lang`
500
- - `assetsType` are `js`, `css`, `i18n`
501
- - `lang` this argument only works when `i18n` is `assetsType`
502
- - feature added for efc `cdnStatement`
503
- - **Issue fixes:-**
504
- - css classname hash change issue fix
505
- - debug package conflit issue fix in nock in (react-cli test)
506
- - manifest.json css file name correction issue for rtl and ltr
507
-
508
- # 0.0.1-exp.161.2
509
-
510
- - Features
511
- - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
512
- - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
513
- - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
514
- - `getInitalAssets` this function has two arguments `assetsType`, `lang`
515
- - `assetsType` are `js`, `css`, `i18n`
516
- - `lang` this argument only works when `i18n` is `assetsType`
517
-
518
- # 0.0.1-exp.161.1
519
-
520
- - Features
521
- - feature added for efc `cdnStatement`
522
- - Issue fixes:-
523
- - css classname hash change issue fix
524
- - debug package conflit issue fix in nock in (react-cli test)
525
- - manifest.json css file name correction issue for rtl and ltr
526
-
527
- # 0.0.1-beta.160
528
-
529
- - @zohodesk/normalizer package version updated to 1.0.2
530
-
531
- # 0.0.1-beta.159
532
-
533
- - @zohodesk/datetimejs package updated to beta.7
534
-
535
- # 0.0.1-exp.159
536
-
537
- - issue fix:-
538
- - when rtl ltr css split enable manifest json css filename keys comes with hash .
539
-
540
- # 0.0.1-beta.158
541
-
542
- - Removing source map files from service worker caching.
543
-
544
- # 0.0.1-beta.157
545
-
546
- - Experimental version issue fix(Dummy version removed)
547
-
548
- # 0.0.1-beta.156
549
-
550
- - ReportPublish issue fix
551
-
552
- # 0.0.1-beta.155
553
-
554
- - get impacted library source files option added
555
-
556
- # 0.0.1-beta.154
557
-
558
- - mockPrefix option for mock url prefix change
559
- - Issue fix:-
560
- - un wanted {{--js-smap}} in inital html without enable smap in build
561
-
562
- # 0.0.1-beta.153
563
-
564
- - Vendor include array added
565
- - If you need to include any thrid party js in vendor we can use this array
566
-
567
- # 0.0.1-beta.152
568
-
569
- impact servise related changes:-
570
-
571
- - nowatchstart option added. will be used like `react-cli nowatchstart <...options>` this will be used for src file changes no need to reflect (or no need to rebulid on file changes)
572
- - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
573
- only work in two ways
574
- 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
575
- 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
576
- #### Urls are:-
577
- Below express path are added, For download zip files and
578
- - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
579
- - `/zips/build.zip` build zip file (contains bundled all files)
580
-
581
- # 0.0.1-beta.151
582
-
583
- - issue fix:- Docs config 'html-loader' options updated.
584
- - sslcertUpdate feature added
585
- - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
586
- - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
587
-
588
- # 0.0.1-beta.150
589
-
590
- - issue Fix:- in npm 7 option not working issue fixed
591
- - ssl certificate update
592
-
593
- # 0.0.1-beta.149
594
-
595
- - css, ltr and rtl chunk split based on [dir=ltr]
596
- - to enable ltr and rtl chunk spilt you have to add config in you package.json
597
- <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
598
- - we have added some options in EFCPlugin for rtlsplit related features.
599
- - we have expoed require function for only css impact related changes with flag
600
-
601
- # 0.0.1-beta.148
602
-
603
- - source map enabled in prod mode for debug client
604
- - crossorigin attribute added for scripts
605
-
606
- # 0.0.1-beta.147
607
-
608
- - reportpublish issue fix
609
-
610
- # 0.0.1-beta.146
611
-
612
- - while docs run LibraryImactPlugin not constructor issue fix
613
- - css loader added for css impact related changes
614
-
615
- # 0.0.1 -beta.145
616
-
617
- - LibraryImpactPlugin added
618
- - check impacted source components name if any version update happened with master
619
-
620
- # 0.0.1-beta.144
621
-
622
- - prod build bug fix
623
-
624
- # 0.0.1-beta.143
625
-
626
- - `babel-plugin-transform-remove-console` added for remove console properties except error and log
627
- - `console_exculde` script added if suppose enable same in dev mode
628
- - service worker plugin changes
629
- - library impact changes
630
-
631
- # 0.0.1-beta.142
632
-
633
- - `eslint-plugin-react-hooks` added to eslint support.
634
- - Updated exact versions to eslint plugins installation script.
635
-
636
- # 0.0.1-beta.141
637
-
638
- - report publish sh fixes
639
- - duplicate removal in impacted componentTest
640
-
641
- # 0.0.1-beta.140
642
-
643
- - copy-webpack-plugin bug fix
644
-
645
- # 0.0.1-beta.139
646
-
647
- - copy-webpack-plugin downgrade
648
- - babel runtime plugin issue fix in prod config
649
- - few enhancements
650
-
651
- # 0.0.1-betaa.138.1
652
- - new feature added for custom extra attribute for dynamically added tags by webpack.
653
- - To enable this feature you need to enable "react-cli" => "app" => "customAttributes" => "enable"
654
- - For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/9eea8df14e55584b2114b5e484ca8b751a4ba191/src/plugins/CustomAttributePlugin.md)
655
-
656
- # 0.0.1-beta.138
657
-
658
- - sstest library version updated
659
- - unitcase calcluation issues fixed
660
-
661
- # 0.0.1-beta.137
662
-
663
- - Third party css files loading issue fix
664
-
665
- # 0.0.1-beta.136
666
-
667
- - eslint support
668
-
669
- # 0.0.1-beta.135
670
-
671
- - windows publish issue
672
-
673
- # 0.0.1-beta.134
674
-
675
- - Build Issue Fix
676
-
677
- # 0.0.1-beta.133
678
-
679
- - CDN Changes in I18nSplitPlugin
680
- - nonce support added for i18n chunks
681
-
682
- # 0.0.1-beta.132
683
-
684
- - CDN Changes in EFC Plugin
685
-
686
- # 0.0.1-beta.131
687
-
688
- - Added Cdn Change Plugin
689
-
690
- # 0.0.1-beta.130
691
-
692
- - Babel 7 migration, ES6 build generation config and polyfill removal
693
- - CopyPlugin issue fix
694
-
695
- #0.0.1-beta.129
696
-
697
- - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
698
-
699
- # 0.0.1-beta.128
700
-
701
- - Added support to generate hash for the third party files(TPHashMappingPlugin)
702
-
703
- # 0.0.1-beta.127
704
-
705
- - service worker plugin - to recursively add multiple directories (recursive=true)
706
-
707
- # 0.0.1-beta.126
708
-
709
- - issue fix in i18n split plugin
710
-
711
- # expremental versions
712
-
713
- - 0.0.1-beta.121
714
- - 0.0.1-beta.122
715
- - 0.0.1-beta.123
716
- - 0.0.1-beta.124
717
- - 0.0.1-beta.125
718
-
719
- # 0.0.1-beta.120
720
-
721
- - issue fix in third party file copying
722
-
723
- # expremental versions
724
-
725
- - 0.0.1-beta.119
726
- - 0.0.1-beta.118
727
-
728
- #0.0.1-beta.117
729
-
730
- - createSDkFile otion added for efc
731
- - small fix in i18n split plugin
732
-
733
- #0.0.1-beta.116
734
-
735
- - thirdparty package move to build (tpFolder in app config)
736
-
737
- #0.0.1-beta.115
738
-
739
- - Added Web worker support
740
-
741
- #0.0.1-beta.114
742
-
743
- - i18n split based on chunk
744
- - to enable i18n chunk spilt you have to add config in you package.json
745
-
746
- #0.0.1-beta.113
747
-
748
- - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
749
-
750
- #0.0.1-beta.112
751
-
752
- - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
753
- - Service worker plugin changes
754
-
755
- #0.0.1-beta.111
756
-
757
- - hasRTL, selectorReplace Condition Separated
758
-
759
- #0.0.1-beta.110
760
-
761
- - SplitChunk Order Issue Fixed
762
- - https url issue Fixed
763
-
764
- #0.0.1-beta.109
765
-
766
- - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
767
-
768
- #0.0.1-beta.108
769
-
770
- - @zohodesk/screenshottest package version update (18)
771
-
772
- #0.0.1-beta.107
773
-
774
- - changed component without docs finder added
775
-
776
- #0.0.1-beta.106
777
-
778
- - custom chunk support changes
779
- - css absolute url fix
780
-
781
- #0.0.1-beta.105
782
-
783
- - @zohodesk/screenshottest package version update (17) with the issue fix
784
-
785
- #0.0.1-beta.104
786
-
787
- - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
788
-
789
- #0.0.1-beta.103
790
-
791
- - @zohodesk/screenshottest package version update (16) with the issue fix
792
-
793
- #0.0.1-beta.102
794
-
795
- - @zohodesk/screenshottest package version update (15) with the issue fix
796
-
797
- #0.0.1-beta.101
798
-
799
- - 100 changes readme missing
800
- - bundle analyser changes
801
-
802
- #0.0.1-beta.100
803
-
804
- - @zohodesk/screenshottest package version update with the issue fix
805
- - font public path replace issue for url fonts - fixed
806
-
807
- #0.0.1-beta.99
808
-
809
- - can't publish already published
810
-
811
- #0.0.1-beta.98
812
-
813
- - defer break public path adding regex - fixed
814
-
815
- #0.0.1-beta.97
816
-
817
- - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
818
-
819
- #0.0.1-beta.96
820
-
821
- - html plugin inject option expose and version udpate 4.2.0
822
- - src html change i18n removal issue fix
823
- - script loading defer added
824
- - added babel plugin to remove proptypes
825
-
826
- #0.0.1-beta.95
827
-
828
- - schemas/index.js - issue fix
829
-
830
- #0.0.1-beta.94
831
-
832
- - screenshot test library version update
833
- - ssserver issue fix
834
-
835
- #0.0.1-beta.93
836
-
837
- - selector replacer for Help Center usecase
838
- - eslint performance plugin
839
- - css classname hash selector support for docs
840
- - service worker plugin
841
-
842
- #0.0.1-beta.92
843
-
844
- - docs ui fixes and edit mode
845
- - @zohodesk/datetimejs version update
846
-
847
- #0.0.1-beta.91
848
-
849
- - repo clone command pull issue fix
850
- - docs css change
851
- - SSTest package version downgrade
852
-
853
- #0.0.1-beta.90
854
-
855
- - added support for copying Timezone data from @zohodesk/datetimejs
856
- - docstool changes
857
-
858
- #0.0.1-beta.89
859
-
860
- - CSP nonce support for initial assets `{{--CSP-nonce}}`
861
- - introduced new mode to disable react warns in dev mode (dev-no-warn)
862
- - docs ui fix
863
-
864
- #0.0.1-beta.88
865
-
866
- - Impact run and Master seperate during SSTEST
867
- - docs changes
868
- - filenames and packages addedd in cssHashSelectors option
869
-
870
- #0.0.1-beta.87
871
-
872
- - run screenshot test for impacted components
873
- - seperate master from the CI flow with the HBase storage
874
- - docs changes
875
- - coverage percentage check disabled
876
-
877
- #0.0.1-beta.86
878
-
879
- - exclude without js changes for unittest
880
- - express server history fallback refactored
881
-
882
- #0.0.1-beta.85
883
-
884
- - i18n placeholder removal issue fixed
885
- - css classname prefix moved to option. default is zd
886
-
887
- #0.0.1-beta.84
888
-
889
- - object spread operator support
890
-
891
- #0.0.1-beta.83
892
-
893
- - eslint report type by flag
894
- - unitcase file exclude array issue fix
895
- - sstesthack issue fix
896
-
897
- #0.0.1-beta.82
898
-
899
- - eslint impact run enable - completed
900
- - devplugin cleanupstats filename import issue fix
901
- - coveragecollector return format change
902
-
903
- #0.0.1-beta.81
904
-
905
- - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
906
-
907
- #0.0.1-beta.80
908
-
909
- - unitcase filecoverage testpath issue fix
910
- - shadowdom support
911
- - postpublish and sstest hack script
912
- - dependencies impact list
913
- - can change runtime chunk's character
914
- - font preload added
915
-
916
- #0.0.1-beta.79
917
-
918
- - unitcase filecoverage added and also codecoverage with dependencies spec added
919
-
920
- #0.0.1-beta.78
921
-
922
- - components and dot library's stats added with module stats
923
- - Mini css extract plugin's unwanted logs removed
924
- - runtime chunk added in dev mode
925
- - nodemon windows issue fix
926
- - testinfo failure missing while can't get coverage
927
- - performance eslint plugin added and normalizer moved under zohodesk
928
-
929
- #0.0.1-beta.77
930
-
931
- - @zohodesk/eslint-plugin-zsecurity version update
932
- - git pull origin with branch name while screenshot test after the branch switch
933
-
934
- #0.0.1-beta.76
935
-
936
- - breaking issue fix from last version ( prod config issue )
937
-
938
- #0.0.1-beta.75
939
-
940
- - sstest - reinstall dependencies after switch branch
941
-
942
- #0.0.1-beta.74
943
-
944
- - docs provider support (Component.\_provider)
945
-
946
- #0.0.1-beta.73
947
-
948
- #0.0.1-beta.72
949
-
950
- - run eslint security rules option enable
951
- - add the reportURL with the result.json file
952
- - mock server post api issue fix
953
-
954
- #0.0.1-beta.71
955
-
956
- - publicpath hard coding while flatten build issue fix
957
-
958
- #0.0.1-beta.70
959
-
960
- - css class compression flag enable
961
- - docs src URL update
962
-
963
- #0.0.1-beta.69
964
-
965
- - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
966
- - babel-lodash plugin fix with getdevplugin
967
- - cursor blink issue fix for sstest
968
- - in result.json unitcase coverage verified boolean added
969
-
970
- #0.0.1-beta.68
971
-
972
- - rtl ignore [dir] changes
973
-
974
- #0.0.1-beta.67
975
-
976
- - babel-plugin-transform-dynamic-import library added with package.json
977
- - schema change with hostname cli option s
978
-
979
- #0.0.1-beta.66
980
-
981
- - mockport hard coded issue fix
982
-
983
- #0.0.1-beta.65
984
-
985
- - window rtl build issue fix
986
- - separate rtl build support added like react-cli rtl ./src ./lib
987
-
988
- #0.0.1-beta.64
989
-
990
- - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
991
-
992
- #0.0.1-beta.63
993
-
994
- - LTR & RTL support added
995
-
996
- #0.0.1-beta.62
997
-
998
- - componentTest.css entry in components.html
999
-
1000
- #0.0.1-beta.60
1001
-
1002
- - SSTMiddleware hook added for ssserver
1003
- - remove some unwanted class in components.css
1004
- - componentTest.css added with common animation break css rules
1005
-
1006
- #0.0.1-beta.59
1007
-
1008
- - vendor files exclude from app
1009
- - since the chunk hash issue, moduleIds configured as named
1010
-
1011
- #0.0.1-beta.58
1012
-
1013
- - Push result json with the report zip
1014
- - screenshot-test library Version update
1015
-
1016
- #0.0.1-beta.57
1017
-
1018
- - vendor chunk split issue fix
1019
-
1020
- #0.0.1-beta.56
1021
-
1022
- - css ordering issue fix
1023
-
1024
- #0.0.1-beta.55
1025
-
1026
- - prod build performance changes
1027
- - css duplication issue fix
1028
- - root chunk splitting logic change
1029
-
1030
- #0.0.1-beta.54
1031
-
1032
- - increased css hash size 5 to 10
1033
-
1034
- #0.0.1-beta.53
1035
-
1036
- - generate json file for all the test results during test run
1037
- - sstest version update
1038
- - some issue fixes
1039
-
1040
- #0.0.1-beta.52
1041
-
1042
- - template src folder missed issue fix because of npmignore all src folder
1043
-
1044
- #0.0.1-beta.51
1045
-
1046
- - template app updated with redux and router by kumaresan(thala)
1047
-
1048
- #0.0.1-beta.50
1049
-
1050
- - window machine css unique issue fix
1051
-
1052
- #0.0.1-beta.49
1053
-
1054
- - dev css unique issue fix
1055
-
1056
- #0.0.1-beta.48
1057
-
1058
- - telephony support css unique changes
1059
-
1060
- #0.0.1-beta.47
1061
-
1062
- - git pull during the branch switch in ssserver
1063
- - common util file for pull and switch the branches for both git and hg
1064
-
1065
- #0.0.1-beta.46
1066
-
1067
- - ogg file support and tmpl file support
1068
-
1069
- #0.0.1-beta.45
1070
-
1071
- - checkout branch with force during sstest
1072
-
1073
- #0.0.1-beta.44
1074
-
1075
- - sstest master trigger issue fix
1076
-
1077
- #0.0.1-beta.43
1078
-
1079
- - get component object from docs server by http protocol during sstest
1080
- - reach docs server by the IP address of the host.
1081
- - get the current branch name by args
1082
-
1083
- #0.0.1-beta.42
1084
-
1085
- - className ssTest added and screenshot test version update
1086
-
1087
- #0.0.1-beta.41
1088
-
1089
- - i18n replace issue fix
1090
-
1091
- - some css changes related to above
1092
- - screenshottest version update
1093
-
1094
- #0.0.1-beta.40
1095
-
1096
- - SSTMiddleware added to get hook from webpack build process to start sstest
1097
- - run unit test for commited files except the spec file name from name list
1098
- - publicpath added for i18n js files
1099
-
1100
- #0.0.1-beta.39
1101
-
1102
- - prod build check issue fix
1103
-
1104
- #0.0.1-beta.38
1105
-
1106
- - all unitcase runs only with master option removed
1107
- - prod mode in dev setup flag issue fix
1108
-
1109
- #0.0.1-beta.37
1110
-
1111
- - removed hash for index.html and add publicpath when run prod mode in dev machine
1112
- - screenshot version updated
1113
- - docs build log issue fix
1114
-
1115
- #0.0.1-beta.36
1116
-
1117
- - reportpublish sh file report generation even if any breakages in test scripts
1118
-
1119
- #0.0.1-beta.35
1120
-
1121
- - full run of spec fils only for master option added
1122
- - reportpublish sh for screenshot test report template issue fix
1123
-
1124
- #0.0.1-beta.34
1125
-
1126
- - monitor mockserver changes without affecting static server
1127
-
1128
- #0.0.1-beta.33
1129
-
1130
- - mail sent issue - fix
1131
-
1132
- #0.0.1-beta.32
1133
-
1134
- - ssl cert update
1135
- - webpack-bundle-analyzer version update (because of npm audit fix)
1136
-
1137
- #0.0.1-beta.31
1138
-
1139
- - reportpublicpath plugin rename issue fix
1140
-
1141
- #0.0.1-beta.30
1142
-
1143
- - report generate plugin rename
1144
- - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
1145
- - reportpublish sh update
1146
-
1147
- #0.0.1-beta.29
1148
-
1149
- - screenshot version updated
1150
- - unit test case commit coverage issue fix
1151
-
1152
- #0.0.1-beta.28
1153
-
1154
- - Unitcase coverage for changed files issue fix
1155
-
1156
- #0.0.1-beta.27
1157
-
1158
- - prod build size and hash tracking report added
1159
-
1160
- #0.0.1-beta.26
1161
-
1162
- - inlined assets and css assets publicpath collide issue fix
1163
-
1164
- #0.0.1-beta.25
1165
-
1166
- - inline image public path issue fix
1167
- - docs css change for sstest
1168
-
1169
- #0.0.1-beta.24
1170
-
1171
- - removed source map generation by default
1172
-
1173
- #0.0.1-beta.23
1174
-
1175
- - windows path issue in i18I18NInjectIntoIndexPlugin plugin
1176
-
1177
- #0.0.1-beta.22
1178
-
1179
- - unusedfilesplugin issue fixed and print valid info
1180
-
1181
- #0.0.1-beta.21
1182
-
1183
- - production build hash details exported in index html
1184
-
1185
- #0.0.1-beta.20
1186
-
1187
- - list the name of un documented component file name
1188
-
1189
- #0.0.1-beta.19
1190
-
1191
- - publicpath callback plugin added
1192
-
1193
- #0.0.1-beta.18
1194
-
1195
- - production build issue fix
1196
-
1197
- #0.0.1-beta.17
1198
-
1199
- - redux version downgraded
1200
-
1201
- #0.0.1-beta.16
1202
-
1203
- - Babel env and react issue fix
1204
-
1205
- #0.0.1-beta.15
1206
-
1207
- - Few issue fixes
1208
- - Webpack Manifest Plugin revamped
1209
- - @zohodesk/screenshot-test package added
1210
-
1211
- #0.0.1-beta.14
1212
-
1213
- - Removed minify option in css-loader config
1214
- - Removed optimize-css-assets-webpack-plugin
1215
- - Added UglifyCSS webpack plugin
1216
- - Packages version up to dated expect babel-loader
1217
- - Docs umd build issue fixed
1218
- - CSS public path in all configs
1219
-
1220
- #0.0.1-beta.13
1221
-
1222
- - Breaking issues fix
1223
- - Add eslint config file in project root folder
1224
- - Removed hot module and SSR concepts
1225
- - Public Path change plugin revamp
1226
- - Replaced style-loader with MiniCssExtractPlugin for overall
1227
-
1228
- #0.0.1-beta.12
1229
-
1230
- - ResourceHints Plugin added
1231
- - able to set public paths for various types of assets
1232
- - provided few cli options for existing options
1233
- - change ext of files while copy
1234
- - cache directory issue fix in dev mode
1235
- - script instrument loader added
1236
- - eslint windows machine issue fix
1237
-
1238
- #0.0.1-beta.11
1239
-
1240
- - css module extension changed to .modules.css from .mcss
1241
-
1242
- #0.0.1-beta.10
1243
-
1244
- - css module related changes
1245
- - unit test case breaking issue fix
1246
-
1247
- #0.0.1-beta.9
1248
-
1249
- - dynamic import support
1250
- - unit test case issue fix
1251
-
1252
- #0.0.1-beta.8
1253
-
1254
- - major issue fixes - previous version issues
1255
- - eslint new rules added
1256
- - reverted babel exclude option
1257
-
1258
- #0.0.1-beta.7
1259
-
1260
- - optionally attributes removal - prod mode
1261
- - pre-commit issue fixed
1262
- - eslint fix option added
1263
- - used exclude instead of include in babel loader
1264
- - option lookup issue fixed
1265
-
1266
- #0.0.1-beta.6
1267
-
1268
- - complext proptypes support for docs
1269
-
1270
- #0.0.1-beta.5
1271
-
1272
- - docs slowness issue fix
1273
- - jest update issue fix
1274
-
1275
- #0.0.1-beta.4
1276
-
1277
- - css chunk related changes
1278
- - manifest json related changes
1279
- - css bundle issue fixed
1280
-
1281
- #0.0.1-beta.3
1282
-
1283
- - slowness issue fixed
1284
- - efc build issue fixed
1285
-
1286
- 0.0.1-beta.2 changes
1287
-
1288
- - docs changes
1289
- - precommit hook issue fix
1290
- - compression support
1291
- - prod string error fix
1292
- - efc build support
1293
- - single style tag support
1
+ # React CLI
2
+
3
+ A CLI tool for build modern web application and libraries
4
+
5
+ # Installation
6
+
7
+ Below Steps:-
8
+
9
+ > `npm i -g @zohodesk/react-cli`
10
+
11
+ # Usage
12
+
13
+ ## Step 1
14
+
15
+ > `mkdir <your-project-folder> && cd mkdir <your-project-folder>`
16
+
17
+ ## Step 2
18
+
19
+ - create `package.json` file
20
+ - add this to your `package.json`
21
+
22
+ ```json
23
+ {
24
+ "scripts": {
25
+ "start": "react-cli start",
26
+ "build": "react-cli build"
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Step 3
32
+
33
+ - create below files
34
+ - `src/index.js`
35
+ - `src/index.html`
36
+
37
+ ## Step 4
38
+
39
+ Now to run app
40
+
41
+ > `npm run start`
42
+
43
+ ---
44
+
45
+ # Change Logs
46
+ # 1.1.9 (25-7-2023)
47
+
48
+ **Features:-**
49
+
50
+ - we have added config file support for react-cli schema. the default config file name `build.config.js` support added. In `build.config.js` you must export configuration object under `config` key. And Note: `build.config.js` is high priority then `package.json` `react-cli` config.
51
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
52
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
53
+ - added support for pattern as function for custom chunks split logic.
54
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
55
+ - added `postCssPluginOrder` feature :
56
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "false", default plugin order will be followed.
57
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "true", order preserved in `plugins` Object will be considered.
58
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to an array with plugins in a custom order, the custom order will be considered.
59
+
60
+ - We use the same plugin names as in `patterns` for the plugins to execute successfully.
61
+
62
+
63
+ **Issue Fix**
64
+ - fixed file path separator issue with split chunks config for vendor exclude list for windows (that was work well for mac and ubuntu only issue in windows).
65
+ - fixed cssUniqueness pattern not working in docs.
66
+
67
+ **Changes**
68
+ - previously all custom chunks are enforce true, no we have given support for enforce false for chunks on splitChunks config.
69
+
70
+ # 1.1.8
71
+
72
+ **Issue Fix**
73
+ - Docs fix for Selector Replace 'always require arguement' issue.
74
+
75
+ # 1.1.7
76
+
77
+ **Feature**
78
+ - Markdown parser feature added in docs
79
+ For more info please refer to :
80
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/MarkdownParser.md)
81
+
82
+
83
+ # 1.1.6-exp.2
84
+ - fixed file path separator issue with split chunks config for vendor exclude list.
85
+ - added support for not doing enforce true for chunks on splitchunks config.
86
+
87
+ # 1.1.5-exp.5
88
+ - fixed the issues regarding custom chunks base config schema.
89
+
90
+ # 1.1.5-exp.4
91
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
92
+
93
+ # 1.1.5-exp.3
94
+ - added options to split chunks base config
95
+ - added support for passing custom chunks split logic as function.
96
+ # 1.1.6
97
+
98
+ **Issue Fix**
99
+ - local install react-cli spawnSync Error fix in npm 8
100
+ - babel version update issue fix (Cannot read properties of undefined (reading 'file')) and (BABEL_TRANSFORM_ERROR)
101
+
102
+ # 1.1.5-exp.2
103
+
104
+ **Issue Fix**
105
+ - local install react-cli spawnSync Error fix in npm 8
106
+
107
+ # 1.1.5
108
+
109
+ **Issue Fix**
110
+
111
+ - include pattern fix for variable converter plugin fixed
112
+
113
+ # 1.1.4
114
+
115
+ **Issue Fix**
116
+ - global install react-cli spawnSync Error fix
117
+ - `0px` variable value conversion issue fixed
118
+ - pattern exclude for postcss plugins case fixed
119
+
120
+ # 1.1.3
121
+
122
+ **Issue Fix**
123
+ - local install react-cli spawnSync Error fix
124
+
125
+ # 1.1.2
126
+
127
+ **Issue Fix**
128
+
129
+ - ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
130
+
131
+ # 1.1.1
132
+
133
+ **Issue Fix**
134
+ - docs component name incorrect in windows, when using --enableReactLive issue fixed.
135
+
136
+ **Feature Update**
137
+ - Support for desk-library to use Selector Replace plugin using individual script. To use `react-cli selectorReplacer [source] [target]`
138
+
139
+ # 1.1.0
140
+
141
+ **Feature Update**
142
+ - Support for desk-library to use variable convertion plugin using individual script. To use `react-cli variableConverter [source] [target]`
143
+ - pattern filter changes, new filter system instead of exclude to include or exclude files for plugins.
144
+ For more info please refer to :
145
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/patternFiltering.md)
146
+ - React Live feature implemented for Docs.
147
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ReactLive.md)
148
+
149
+ # 1.0.3-beta.1
150
+
151
+ **Issue Fix**
152
+ - nock api not working issue fixed. This error throwing in @zohodesk/react-cli@1.0.2 version. but working in older versions ( 0.0.1-beta.178 )
153
+
154
+
155
+ # 1.0.3
156
+
157
+ **Feature Update**
158
+ - Support for global httpsCerts usage
159
+ - Support for global client_packages_group usage
160
+ - custom attribute for dynamically loading chunks, In this version we merged changes from [0.0.1-beta.167.1](#0.0.1-beta.167.1).
161
+ **Package Update**
162
+ - @zohodesk/client_packages_group@**1.0.1** ==> @zohodesk/client_packages_group@**1.0.2**
163
+
164
+
165
+
166
+ # 1.0.2
167
+
168
+ **Feature Update**
169
+ - Selector replace plugin made as a custom postcss-plugin with update to code that was unpublished in package.
170
+
171
+ # 1.0.1
172
+
173
+ **Issue Fix**
174
+ - variable conversion for px and var(--) values in same declaration was not supported, now it is supported.
175
+ - package-lock.json removed from `.npmignore`
176
+
177
+ **Feature Update**
178
+ - exclude added to Selector Plugin
179
+ # 1.0.0
180
+ ## Major Release
181
+ **Changes:**
182
+ - File support added for `.webp` for `docs`, `dev` and `prod` mode
183
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
184
+
185
+ **Breaking Changes:**
186
+
187
+ - We have remove ssl certificate for security reasons.
188
+ So default https server won't run.
189
+ In order to make it work as before you need to specify two things
190
+ 1. install `@zohodesk-private/client_dev_cert`
191
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
192
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`. and mock wms `/wmsmockapi` won't work.
193
+ So Please be carefull when you update this version or above without proper configaration.
194
+
195
+
196
+ # 0.0.1-beta.178
197
+
198
+ **Changes:**
199
+
200
+ - File support added for `.webp` for `docs`, `dev` and `prod` mode
201
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
202
+
203
+ **Breaking Changes:**
204
+
205
+ - We have remove ssl certificate for security reasons.
206
+ So default https server won't run.
207
+ In order to make it work as before you need to specify two things
208
+ 1. install `@zohodesk-private/client_dev_cert`
209
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
210
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
211
+ So Please be carefull when you update this version or above without proper configaration.
212
+
213
+ # 0.0.1-exp.178.2
214
+
215
+ **Changes:**
216
+
217
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
218
+
219
+ # 0.0.1-exp.178.1
220
+
221
+ **Breaking Changes:**
222
+
223
+ - We have remove ssl certificate for security reasons.
224
+ So default https server won't run.
225
+ In order to make it work as before you need to specify two things
226
+ 1. install `@zohodesk-private/client_dev_cert`
227
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
228
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
229
+ So Please be carefull when you update this version or above without proper configaration.
230
+
231
+ # 0.0.1-beta.177
232
+
233
+ **Changes:**
234
+
235
+ - We have added extra new Error option `MULTIPLE_OCCURANCES` support for **convert px to custom variables**.
236
+ - In case css --variables are not assigned an error will be thrown and logged in `.cli/logs/unassignedVariables.log`. The unassigned variables can be manually assigned in `variableMapping.json` through two keys :
237
+ - `changes` : for the variables that have to be converted, manual values can be added ( eg. "--wms_height": "height" )
238
+ - `ignore` : for the variables that do not have to be considered, they can be added as keys with some value in `ignore` key (eg. "--gc_widget_video_bg": "undefined"). These values will be ignored.
239
+ - strict mode can be enabled for checking --variables in `cssVariableReplacementOptions.strictMode`
240
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
241
+
242
+ - and this version has same as `0.0.1-exp.176.12`, `0.0.1-exp.176.11`
243
+
244
+ # 0.0.1-exp.176.12
245
+
246
+ **Changes:**
247
+
248
+ - Earlier versions of react-cli, we have been putting video files under images folder in build output, now, we have moved the video files under videos folder in build output.
249
+
250
+ # 0.0.1-exp.176.11
251
+
252
+ **Issue Fix:**
253
+
254
+ - When we use `react-cli.app.publicPaths.callback` this option and video files import, in place of publicPath url, **null** was there instead of file type `video` issue fixed.
255
+
256
+ # 0.0.1-beta.176
257
+
258
+ **Features:**
259
+
260
+ - we have added feature to **increase Selector weight** for all css classes in your project during build time.
261
+ To enable this feature you have to set `react-cli.app.plugins.selectorWeight` as `true` in **package.json**.
262
+ For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/SelectorWeight.md)
263
+ - Updates to variable replacement are given :
264
+ - css variables with -- are now supported due to the webpack plugin `VariableConversionCollector` that is generated for the same.
265
+ - `DECIMAL_CHECK`, `DECIMAL_REJECT` are two new errors supported.
266
+ - support for text-indent, clip, flex, flex-basis, row-gap, column-gap, gap properties are now given.
267
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
268
+
269
+ # 0.0.1-beta.175
270
+
271
+ **Issue Fix:-**
272
+
273
+ - When we use "hoverActive" @import in css not working issue fixed
274
+
275
+ **Features:**
276
+
277
+ - `minifiy` option supported for minimize index.html file in during build time. You can use this option as "react-cli.app.htmlTemplate.minify" the options are same as https://github.com/jantimon/html-webpack-plugin#minification
278
+
279
+ # 0.0.1-beta.174
280
+
281
+ cli has been updated to fix compose issue faced when classname:hover exists and classname does not before compose
282
+
283
+ **Issue Fix:-**
284
+
285
+ - In react-cli version `0.0.1-beta.173`, when we use `start` command throws error issue fixed
286
+ - while using `cssVariableReplacementOptions`, compose issue faced in css files, when classname:hover exists and classname does not exist issue fixed
287
+
288
+ **Feature:-**
289
+
290
+ - `react-cli.test.classnameFormat` option added to change CssModules (Ex: import style from "./a.module.css" ) className transform template unittest case.
291
+ `classnameFormat` default value `[classname]` you can customize it. Example: `[classname]-[hash]`
292
+
293
+ **Changes:-**
294
+
295
+ - `jsonFile_test_*.json` files deleted after they used.
296
+
297
+ # 0.0.1-beta.173
298
+
299
+ **Features:**
300
+
301
+ - we have added feature to **convert px to custom variables** for all css files in your project during build time.
302
+ To enable this feature you have to set `react-cli.app.plugins.cssVariableReplacement` as `true` in **package.json**.
303
+
304
+ Conversion for css Variables from Variables to px in Supportapp completed (`variableIgnore.js` && `pxParserPostcss.js` to be referred to), and px to custom variables through the new `variableModificationPlugin`. Error Log generation can also be converted on enabling
305
+
306
+ For an more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
307
+
308
+ # 0.0.1-beta.172
309
+
310
+ We have renamed some options, For Our future features convenience.
311
+ We have given fallback support.
312
+ Deprecation Warnings:-
313
+
314
+ - `react-cli.app.hasRTL` ==> `react-cli.app.plugins.hasRTL`
315
+ - `react-cli.app.rtlExclude` ==> `react-cli.app.exclude.rtl`
316
+
317
+ - `react-cli.docs.hasRTL` ==> `react-cli.docs.plugins.hasRTL`
318
+ - `react-cli.docs.rtlExclude` ==> `react-cli.docs.exclude.rtl`
319
+ these options have fallback support.
320
+
321
+ # 0.0.1-beta.171
322
+
323
+ Features added :
324
+
325
+ 1. `react-cli.app.mediaQueryHoverActiveString` and `react-cli.docs.mediaQueryHoverActiveString` templates support added for @media(hover: hover) and @media(hover: none) queries. We can modify these to modify respective queries.
326
+
327
+ # 0.0.1-beta.170
328
+
329
+ this version has same as `0.0.1-exp.169.1`, `0.0.1-exp.169.2`
330
+
331
+ # 0.0.1-exp.169.2
332
+
333
+ 1. flags are converted to one variable 'plugin' and used in getCssLoaders.js.
334
+ 2. files for exclusion can be put in seperate arrays in 'exclude' present in package.json.
335
+ 3. `combinerMq` has been converted to `combinerMediaQuery` for clarity.
336
+
337
+ # 0.0.1-exp.169.1
338
+
339
+ File support added for mp4 for docs dev and prod mode
340
+
341
+ # 0.0.1-beta.169
342
+
343
+ this version has same as `0.0.1-exp.168.1`, `0.0.1-exp.168.2`, `0.0.1-exp.168.3` and below and some minor changes
344
+
345
+ 1. `--efc_version=v3` flag added for change efc version via commmand line option
346
+ 2. `hoverActive` flag added for conversion from usual hover to @media(hover:hover) and @media(hover:none) queries for hover support in mobile.
347
+ 3. `combinerMq` flag added for combination of the media queries that might be appended or existing media queries that are duplicates to create one media query with all rules put together.
348
+
349
+ # 0.0.1-exp.168.3
350
+
351
+ Changes :
352
+
353
+ 1. code optimization ( made functions for the hoverActive cases making it more easier to access)
354
+ 2. handled `hover:ignore`, `active:ignore`, `hoverActive:ignore` cases for usual queries and media queries
355
+
356
+ # 0.0.1-exp.168.2
357
+
358
+ Changes :
359
+
360
+ 1. hoverActive case handled with postcss `hover:hover` media query and `hover:none` media query is added
361
+ 2. flag for hoverActive used to add/remove postcss changes
362
+
363
+ # 0.0.1-exp.168.1
364
+
365
+ Changes:-
366
+
367
+ 1. `cliRootPath` option removed `react-cli.app.cliRootPath` in `package.json`
368
+ Due to the reason we updated our logic to find package's executable path.
369
+ 2. `--efc_output_file=efc-sdk-[version].js` option added to modify efc output file by terminal
370
+ 3. added logic to print error message during command run, Previously when executable not found error messages not printed
371
+
372
+ # 0.0.1-beta.168
373
+
374
+ Changes:-
375
+
376
+ 1. `enableChunkHash` option enabled for dev mode, use it as `react-cli.app.enableChunkHash` in `package.json`
377
+ 2. `--enable_efc=true` option added to enable efc by terminal
378
+ 3. unwanted pem files removed
379
+
380
+ # 0.0.1-exp.167.1
381
+
382
+ Features:-
383
+
384
+ - In docs we have added `Description` for Component Props- check out it in `PropTypes` tab
385
+
386
+ # 0.0.1-beta.167.1
387
+ In this version we merged changes from [0.0.1-betaa.138.1](#0.0.1-betaa.138.1).
388
+ and with [0.0.1-beta.167](#0.0.1-beta.167) version changes.
389
+
390
+ # 0.0.1-beta.167
391
+
392
+ SSL certificate update
393
+ this version has same as `0.0.1-exp.166.1`, `0.0.1-exp.166.2` and below and some minor changes
394
+ Features:-
395
+
396
+ - `--shallow_clone` option to `react-cli clone` this option will be usefull for shallow cloning repos in build time we don't need commit messages it will be 2x fast this way
397
+ - Example `react-cli clone --clone_type=git --clone_url=https://some.url --shallow_clone`
398
+ - `cliRootPath` option added for npm workspace related path problems
399
+ - Usage `package.json` , "react-cli" => "cliRootPath" stright key
400
+ - `unstableDepsInverse` option added for use app need library first priority over react-cli packages
401
+ - Usage `package.json` , "react-cli" => "unstableDepsInverse" stright key
402
+
403
+ Issue Fix :-
404
+
405
+ - In devmode initial html not recived after second rebuild issue fix.
406
+ - typo fix `devBulid` to `devBuild`.
407
+ - `disableES5Transpile` option missed in docs now added.
408
+ - docs libAlias not work as app for example in app we always take `es` folder to build for treshaking and reasons,
409
+ But that option not enabled in docs. now it is enabled.
410
+ - In `react-cli devbuild` command options not working properly,
411
+ when above command run via terminal not via npm run script options not working
412
+ So we send that options to webpack then it works as expected.
413
+ this behaviour need to check across os and need to be cross check with other commends as well for now we only fixed this
414
+
415
+ # 0.0.1-exp.166.2
416
+
417
+ Changes:-
418
+
419
+ - `-w` option (watch option) added for `react-cli rtl`
420
+ - Example `react-cli rtl ./src ./lib -w`
421
+ <!-- need to handle `react-cli rtl` options correctly -->
422
+ - disableES5Transpile option libAlias added for docs
423
+
424
+ # 0.0.1-exp.166.1
425
+
426
+ Changes:-
427
+
428
+ - `__testUtils__/globals.js` to jest is not mantatory
429
+ - disableES5Transpile option libAlias added
430
+
431
+ # 0.0.1-beta.166
432
+
433
+ this version has same as `# 0.0.1-exp.164.1`, `# 0.0.1-exp.164.2` and below and some minor changes
434
+
435
+ - google chorme cors preflight issue fix
436
+
437
+ # 0.0.1-beta.165
438
+
439
+ - `valueReplacer` option added in shemas for font name replace related issue handling, for more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ValueReplacer.md)
440
+ - `valuereplacer` option added in react-cli it takes three
441
+ 1. sourceDir
442
+ 2. distDir
443
+ 3. `copyAll` is boolean flag which is for copy all other file or not. "true" means copy all files.
444
+
445
+ # 0.0.1-exp.164.1
446
+
447
+ - extra features in custom chunks reffer [this](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/CustomChunks.md)
448
+
449
+ # 0.0.1-exp.164.2
450
+
451
+ - `devbuild` option add to react cli
452
+
453
+ # 0.0.1-beta.164
454
+
455
+ - typo fix
456
+
457
+ # 0.0.1-beta.163
458
+
459
+ - **Issue Fix:-**
460
+
461
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
462
+ - jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
463
+
464
+ - **Features :-**
465
+ - feature added for pre process logic
466
+ - tailer made requirement for preprocess, just write node js file
467
+ - mention file in `"react-cli" => "preprocess" => "runner"`
468
+ - option parse logic added for react-cli (exprimental)
469
+ - `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
470
+
471
+ # 0.0.1-exp.162.2
472
+
473
+ - **Optimazation:-**
474
+ - double time minimize optimazation
475
+
476
+ # 0.0.1-beta.162.1
477
+
478
+ - **Issue Fix:-**
479
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
480
+
481
+ # 0.0.1-beta.161.1
482
+
483
+ - **Features :-**
484
+ - feature added for pre process logic
485
+ - tailer made requirement for preprocess, just write node js file
486
+ - mention file in `"react-cli" => "preprocess" => "runner"`
487
+ - option parse logic added for react-cli (exprimental)
488
+
489
+ # 0.0.1-beta.162
490
+
491
+ - @zohodesk/datetimejs package updated to beta.8
492
+
493
+ # 0.0.1-beta.161
494
+
495
+ - **Features :-**
496
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
497
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
498
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
499
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
500
+ - `assetsType` are `js`, `css`, `i18n`
501
+ - `lang` this argument only works when `i18n` is `assetsType`
502
+ - feature added for efc `cdnStatement`
503
+ - **Issue fixes:-**
504
+ - css classname hash change issue fix
505
+ - debug package conflit issue fix in nock in (react-cli test)
506
+ - manifest.json css file name correction issue for rtl and ltr
507
+
508
+ # 0.0.1-exp.161.2
509
+
510
+ - Features
511
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
512
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
513
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
514
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
515
+ - `assetsType` are `js`, `css`, `i18n`
516
+ - `lang` this argument only works when `i18n` is `assetsType`
517
+
518
+ # 0.0.1-exp.161.1
519
+
520
+ - Features
521
+ - feature added for efc `cdnStatement`
522
+ - Issue fixes:-
523
+ - css classname hash change issue fix
524
+ - debug package conflit issue fix in nock in (react-cli test)
525
+ - manifest.json css file name correction issue for rtl and ltr
526
+
527
+ # 0.0.1-beta.160
528
+
529
+ - @zohodesk/normalizer package version updated to 1.0.2
530
+
531
+ # 0.0.1-beta.159
532
+
533
+ - @zohodesk/datetimejs package updated to beta.7
534
+
535
+ # 0.0.1-exp.159
536
+
537
+ - issue fix:-
538
+ - when rtl ltr css split enable manifest json css filename keys comes with hash .
539
+
540
+ # 0.0.1-beta.158
541
+
542
+ - Removing source map files from service worker caching.
543
+
544
+ # 0.0.1-beta.157
545
+
546
+ - Experimental version issue fix(Dummy version removed)
547
+
548
+ # 0.0.1-beta.156
549
+
550
+ - ReportPublish issue fix
551
+
552
+ # 0.0.1-beta.155
553
+
554
+ - get impacted library source files option added
555
+
556
+ # 0.0.1-beta.154
557
+
558
+ - mockPrefix option for mock url prefix change
559
+ - Issue fix:-
560
+ - un wanted {{--js-smap}} in inital html without enable smap in build
561
+
562
+ # 0.0.1-beta.153
563
+
564
+ - Vendor include array added
565
+ - If you need to include any thrid party js in vendor we can use this array
566
+
567
+ # 0.0.1-beta.152
568
+
569
+ impact servise related changes:-
570
+
571
+ - nowatchstart option added. will be used like `react-cli nowatchstart <...options>` this will be used for src file changes no need to reflect (or no need to rebulid on file changes)
572
+ - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
573
+ only work in two ways
574
+ 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
575
+ 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
576
+ #### Urls are:-
577
+ Below express path are added, For download zip files and
578
+ - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
579
+ - `/zips/build.zip` build zip file (contains bundled all files)
580
+
581
+ # 0.0.1-beta.151
582
+
583
+ - issue fix:- Docs config 'html-loader' options updated.
584
+ - sslcertUpdate feature added
585
+ - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
586
+ - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
587
+
588
+ # 0.0.1-beta.150
589
+
590
+ - issue Fix:- in npm 7 option not working issue fixed
591
+ - ssl certificate update
592
+
593
+ # 0.0.1-beta.149
594
+
595
+ - css, ltr and rtl chunk split based on [dir=ltr]
596
+ - to enable ltr and rtl chunk spilt you have to add config in you package.json
597
+ <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
598
+ - we have added some options in EFCPlugin for rtlsplit related features.
599
+ - we have expoed require function for only css impact related changes with flag
600
+
601
+ # 0.0.1-beta.148
602
+
603
+ - source map enabled in prod mode for debug client
604
+ - crossorigin attribute added for scripts
605
+
606
+ # 0.0.1-beta.147
607
+
608
+ - reportpublish issue fix
609
+
610
+ # 0.0.1-beta.146
611
+
612
+ - while docs run LibraryImactPlugin not constructor issue fix
613
+ - css loader added for css impact related changes
614
+
615
+ # 0.0.1 -beta.145
616
+
617
+ - LibraryImpactPlugin added
618
+ - check impacted source components name if any version update happened with master
619
+
620
+ # 0.0.1-beta.144
621
+
622
+ - prod build bug fix
623
+
624
+ # 0.0.1-beta.143
625
+
626
+ - `babel-plugin-transform-remove-console` added for remove console properties except error and log
627
+ - `console_exculde` script added if suppose enable same in dev mode
628
+ - service worker plugin changes
629
+ - library impact changes
630
+
631
+ # 0.0.1-beta.142
632
+
633
+ - `eslint-plugin-react-hooks` added to eslint support.
634
+ - Updated exact versions to eslint plugins installation script.
635
+
636
+ # 0.0.1-beta.141
637
+
638
+ - report publish sh fixes
639
+ - duplicate removal in impacted componentTest
640
+
641
+ # 0.0.1-beta.140
642
+
643
+ - copy-webpack-plugin bug fix
644
+
645
+ # 0.0.1-beta.139
646
+
647
+ - copy-webpack-plugin downgrade
648
+ - babel runtime plugin issue fix in prod config
649
+ - few enhancements
650
+
651
+ # 0.0.1-betaa.138.1
652
+ - new feature added for custom extra attribute for dynamically added tags by webpack.
653
+ - To enable this feature you need to enable "react-cli" => "app" => "customAttributes" => "enable"
654
+ - For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/9eea8df14e55584b2114b5e484ca8b751a4ba191/src/plugins/CustomAttributePlugin.md)
655
+
656
+ # 0.0.1-beta.138
657
+
658
+ - sstest library version updated
659
+ - unitcase calcluation issues fixed
660
+
661
+ # 0.0.1-beta.137
662
+
663
+ - Third party css files loading issue fix
664
+
665
+ # 0.0.1-beta.136
666
+
667
+ - eslint support
668
+
669
+ # 0.0.1-beta.135
670
+
671
+ - windows publish issue
672
+
673
+ # 0.0.1-beta.134
674
+
675
+ - Build Issue Fix
676
+
677
+ # 0.0.1-beta.133
678
+
679
+ - CDN Changes in I18nSplitPlugin
680
+ - nonce support added for i18n chunks
681
+
682
+ # 0.0.1-beta.132
683
+
684
+ - CDN Changes in EFC Plugin
685
+
686
+ # 0.0.1-beta.131
687
+
688
+ - Added Cdn Change Plugin
689
+
690
+ # 0.0.1-beta.130
691
+
692
+ - Babel 7 migration, ES6 build generation config and polyfill removal
693
+ - CopyPlugin issue fix
694
+
695
+ #0.0.1-beta.129
696
+
697
+ - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
698
+
699
+ # 0.0.1-beta.128
700
+
701
+ - Added support to generate hash for the third party files(TPHashMappingPlugin)
702
+
703
+ # 0.0.1-beta.127
704
+
705
+ - service worker plugin - to recursively add multiple directories (recursive=true)
706
+
707
+ # 0.0.1-beta.126
708
+
709
+ - issue fix in i18n split plugin
710
+
711
+ # expremental versions
712
+
713
+ - 0.0.1-beta.121
714
+ - 0.0.1-beta.122
715
+ - 0.0.1-beta.123
716
+ - 0.0.1-beta.124
717
+ - 0.0.1-beta.125
718
+
719
+ # 0.0.1-beta.120
720
+
721
+ - issue fix in third party file copying
722
+
723
+ # expremental versions
724
+
725
+ - 0.0.1-beta.119
726
+ - 0.0.1-beta.118
727
+
728
+ #0.0.1-beta.117
729
+
730
+ - createSDkFile otion added for efc
731
+ - small fix in i18n split plugin
732
+
733
+ #0.0.1-beta.116
734
+
735
+ - thirdparty package move to build (tpFolder in app config)
736
+
737
+ #0.0.1-beta.115
738
+
739
+ - Added Web worker support
740
+
741
+ #0.0.1-beta.114
742
+
743
+ - i18n split based on chunk
744
+ - to enable i18n chunk spilt you have to add config in you package.json
745
+
746
+ #0.0.1-beta.113
747
+
748
+ - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
749
+
750
+ #0.0.1-beta.112
751
+
752
+ - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
753
+ - Service worker plugin changes
754
+
755
+ #0.0.1-beta.111
756
+
757
+ - hasRTL, selectorReplace Condition Separated
758
+
759
+ #0.0.1-beta.110
760
+
761
+ - SplitChunk Order Issue Fixed
762
+ - https url issue Fixed
763
+
764
+ #0.0.1-beta.109
765
+
766
+ - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
767
+
768
+ #0.0.1-beta.108
769
+
770
+ - @zohodesk/screenshottest package version update (18)
771
+
772
+ #0.0.1-beta.107
773
+
774
+ - changed component without docs finder added
775
+
776
+ #0.0.1-beta.106
777
+
778
+ - custom chunk support changes
779
+ - css absolute url fix
780
+
781
+ #0.0.1-beta.105
782
+
783
+ - @zohodesk/screenshottest package version update (17) with the issue fix
784
+
785
+ #0.0.1-beta.104
786
+
787
+ - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
788
+
789
+ #0.0.1-beta.103
790
+
791
+ - @zohodesk/screenshottest package version update (16) with the issue fix
792
+
793
+ #0.0.1-beta.102
794
+
795
+ - @zohodesk/screenshottest package version update (15) with the issue fix
796
+
797
+ #0.0.1-beta.101
798
+
799
+ - 100 changes readme missing
800
+ - bundle analyser changes
801
+
802
+ #0.0.1-beta.100
803
+
804
+ - @zohodesk/screenshottest package version update with the issue fix
805
+ - font public path replace issue for url fonts - fixed
806
+
807
+ #0.0.1-beta.99
808
+
809
+ - can't publish already published
810
+
811
+ #0.0.1-beta.98
812
+
813
+ - defer break public path adding regex - fixed
814
+
815
+ #0.0.1-beta.97
816
+
817
+ - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
818
+
819
+ #0.0.1-beta.96
820
+
821
+ - html plugin inject option expose and version udpate 4.2.0
822
+ - src html change i18n removal issue fix
823
+ - script loading defer added
824
+ - added babel plugin to remove proptypes
825
+
826
+ #0.0.1-beta.95
827
+
828
+ - schemas/index.js - issue fix
829
+
830
+ #0.0.1-beta.94
831
+
832
+ - screenshot test library version update
833
+ - ssserver issue fix
834
+
835
+ #0.0.1-beta.93
836
+
837
+ - selector replacer for Help Center usecase
838
+ - eslint performance plugin
839
+ - css classname hash selector support for docs
840
+ - service worker plugin
841
+
842
+ #0.0.1-beta.92
843
+
844
+ - docs ui fixes and edit mode
845
+ - @zohodesk/datetimejs version update
846
+
847
+ #0.0.1-beta.91
848
+
849
+ - repo clone command pull issue fix
850
+ - docs css change
851
+ - SSTest package version downgrade
852
+
853
+ #0.0.1-beta.90
854
+
855
+ - added support for copying Timezone data from @zohodesk/datetimejs
856
+ - docstool changes
857
+
858
+ #0.0.1-beta.89
859
+
860
+ - CSP nonce support for initial assets `{{--CSP-nonce}}`
861
+ - introduced new mode to disable react warns in dev mode (dev-no-warn)
862
+ - docs ui fix
863
+
864
+ #0.0.1-beta.88
865
+
866
+ - Impact run and Master seperate during SSTEST
867
+ - docs changes
868
+ - filenames and packages addedd in cssHashSelectors option
869
+
870
+ #0.0.1-beta.87
871
+
872
+ - run screenshot test for impacted components
873
+ - seperate master from the CI flow with the HBase storage
874
+ - docs changes
875
+ - coverage percentage check disabled
876
+
877
+ #0.0.1-beta.86
878
+
879
+ - exclude without js changes for unittest
880
+ - express server history fallback refactored
881
+
882
+ #0.0.1-beta.85
883
+
884
+ - i18n placeholder removal issue fixed
885
+ - css classname prefix moved to option. default is zd
886
+
887
+ #0.0.1-beta.84
888
+
889
+ - object spread operator support
890
+
891
+ #0.0.1-beta.83
892
+
893
+ - eslint report type by flag
894
+ - unitcase file exclude array issue fix
895
+ - sstesthack issue fix
896
+
897
+ #0.0.1-beta.82
898
+
899
+ - eslint impact run enable - completed
900
+ - devplugin cleanupstats filename import issue fix
901
+ - coveragecollector return format change
902
+
903
+ #0.0.1-beta.81
904
+
905
+ - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
906
+
907
+ #0.0.1-beta.80
908
+
909
+ - unitcase filecoverage testpath issue fix
910
+ - shadowdom support
911
+ - postpublish and sstest hack script
912
+ - dependencies impact list
913
+ - can change runtime chunk's character
914
+ - font preload added
915
+
916
+ #0.0.1-beta.79
917
+
918
+ - unitcase filecoverage added and also codecoverage with dependencies spec added
919
+
920
+ #0.0.1-beta.78
921
+
922
+ - components and dot library's stats added with module stats
923
+ - Mini css extract plugin's unwanted logs removed
924
+ - runtime chunk added in dev mode
925
+ - nodemon windows issue fix
926
+ - testinfo failure missing while can't get coverage
927
+ - performance eslint plugin added and normalizer moved under zohodesk
928
+
929
+ #0.0.1-beta.77
930
+
931
+ - @zohodesk/eslint-plugin-zsecurity version update
932
+ - git pull origin with branch name while screenshot test after the branch switch
933
+
934
+ #0.0.1-beta.76
935
+
936
+ - breaking issue fix from last version ( prod config issue )
937
+
938
+ #0.0.1-beta.75
939
+
940
+ - sstest - reinstall dependencies after switch branch
941
+
942
+ #0.0.1-beta.74
943
+
944
+ - docs provider support (Component.\_provider)
945
+
946
+ #0.0.1-beta.73
947
+
948
+ #0.0.1-beta.72
949
+
950
+ - run eslint security rules option enable
951
+ - add the reportURL with the result.json file
952
+ - mock server post api issue fix
953
+
954
+ #0.0.1-beta.71
955
+
956
+ - publicpath hard coding while flatten build issue fix
957
+
958
+ #0.0.1-beta.70
959
+
960
+ - css class compression flag enable
961
+ - docs src URL update
962
+
963
+ #0.0.1-beta.69
964
+
965
+ - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
966
+ - babel-lodash plugin fix with getdevplugin
967
+ - cursor blink issue fix for sstest
968
+ - in result.json unitcase coverage verified boolean added
969
+
970
+ #0.0.1-beta.68
971
+
972
+ - rtl ignore [dir] changes
973
+
974
+ #0.0.1-beta.67
975
+
976
+ - babel-plugin-transform-dynamic-import library added with package.json
977
+ - schema change with hostname cli option s
978
+
979
+ #0.0.1-beta.66
980
+
981
+ - mockport hard coded issue fix
982
+
983
+ #0.0.1-beta.65
984
+
985
+ - window rtl build issue fix
986
+ - separate rtl build support added like react-cli rtl ./src ./lib
987
+
988
+ #0.0.1-beta.64
989
+
990
+ - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
991
+
992
+ #0.0.1-beta.63
993
+
994
+ - LTR & RTL support added
995
+
996
+ #0.0.1-beta.62
997
+
998
+ - componentTest.css entry in components.html
999
+
1000
+ #0.0.1-beta.60
1001
+
1002
+ - SSTMiddleware hook added for ssserver
1003
+ - remove some unwanted class in components.css
1004
+ - componentTest.css added with common animation break css rules
1005
+
1006
+ #0.0.1-beta.59
1007
+
1008
+ - vendor files exclude from app
1009
+ - since the chunk hash issue, moduleIds configured as named
1010
+
1011
+ #0.0.1-beta.58
1012
+
1013
+ - Push result json with the report zip
1014
+ - screenshot-test library Version update
1015
+
1016
+ #0.0.1-beta.57
1017
+
1018
+ - vendor chunk split issue fix
1019
+
1020
+ #0.0.1-beta.56
1021
+
1022
+ - css ordering issue fix
1023
+
1024
+ #0.0.1-beta.55
1025
+
1026
+ - prod build performance changes
1027
+ - css duplication issue fix
1028
+ - root chunk splitting logic change
1029
+
1030
+ #0.0.1-beta.54
1031
+
1032
+ - increased css hash size 5 to 10
1033
+
1034
+ #0.0.1-beta.53
1035
+
1036
+ - generate json file for all the test results during test run
1037
+ - sstest version update
1038
+ - some issue fixes
1039
+
1040
+ #0.0.1-beta.52
1041
+
1042
+ - template src folder missed issue fix because of npmignore all src folder
1043
+
1044
+ #0.0.1-beta.51
1045
+
1046
+ - template app updated with redux and router by kumaresan(thala)
1047
+
1048
+ #0.0.1-beta.50
1049
+
1050
+ - window machine css unique issue fix
1051
+
1052
+ #0.0.1-beta.49
1053
+
1054
+ - dev css unique issue fix
1055
+
1056
+ #0.0.1-beta.48
1057
+
1058
+ - telephony support css unique changes
1059
+
1060
+ #0.0.1-beta.47
1061
+
1062
+ - git pull during the branch switch in ssserver
1063
+ - common util file for pull and switch the branches for both git and hg
1064
+
1065
+ #0.0.1-beta.46
1066
+
1067
+ - ogg file support and tmpl file support
1068
+
1069
+ #0.0.1-beta.45
1070
+
1071
+ - checkout branch with force during sstest
1072
+
1073
+ #0.0.1-beta.44
1074
+
1075
+ - sstest master trigger issue fix
1076
+
1077
+ #0.0.1-beta.43
1078
+
1079
+ - get component object from docs server by http protocol during sstest
1080
+ - reach docs server by the IP address of the host.
1081
+ - get the current branch name by args
1082
+
1083
+ #0.0.1-beta.42
1084
+
1085
+ - className ssTest added and screenshot test version update
1086
+
1087
+ #0.0.1-beta.41
1088
+
1089
+ - i18n replace issue fix
1090
+
1091
+ - some css changes related to above
1092
+ - screenshottest version update
1093
+
1094
+ #0.0.1-beta.40
1095
+
1096
+ - SSTMiddleware added to get hook from webpack build process to start sstest
1097
+ - run unit test for commited files except the spec file name from name list
1098
+ - publicpath added for i18n js files
1099
+
1100
+ #0.0.1-beta.39
1101
+
1102
+ - prod build check issue fix
1103
+
1104
+ #0.0.1-beta.38
1105
+
1106
+ - all unitcase runs only with master option removed
1107
+ - prod mode in dev setup flag issue fix
1108
+
1109
+ #0.0.1-beta.37
1110
+
1111
+ - removed hash for index.html and add publicpath when run prod mode in dev machine
1112
+ - screenshot version updated
1113
+ - docs build log issue fix
1114
+
1115
+ #0.0.1-beta.36
1116
+
1117
+ - reportpublish sh file report generation even if any breakages in test scripts
1118
+
1119
+ #0.0.1-beta.35
1120
+
1121
+ - full run of spec fils only for master option added
1122
+ - reportpublish sh for screenshot test report template issue fix
1123
+
1124
+ #0.0.1-beta.34
1125
+
1126
+ - monitor mockserver changes without affecting static server
1127
+
1128
+ #0.0.1-beta.33
1129
+
1130
+ - mail sent issue - fix
1131
+
1132
+ #0.0.1-beta.32
1133
+
1134
+ - ssl cert update
1135
+ - webpack-bundle-analyzer version update (because of npm audit fix)
1136
+
1137
+ #0.0.1-beta.31
1138
+
1139
+ - reportpublicpath plugin rename issue fix
1140
+
1141
+ #0.0.1-beta.30
1142
+
1143
+ - report generate plugin rename
1144
+ - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
1145
+ - reportpublish sh update
1146
+
1147
+ #0.0.1-beta.29
1148
+
1149
+ - screenshot version updated
1150
+ - unit test case commit coverage issue fix
1151
+
1152
+ #0.0.1-beta.28
1153
+
1154
+ - Unitcase coverage for changed files issue fix
1155
+
1156
+ #0.0.1-beta.27
1157
+
1158
+ - prod build size and hash tracking report added
1159
+
1160
+ #0.0.1-beta.26
1161
+
1162
+ - inlined assets and css assets publicpath collide issue fix
1163
+
1164
+ #0.0.1-beta.25
1165
+
1166
+ - inline image public path issue fix
1167
+ - docs css change for sstest
1168
+
1169
+ #0.0.1-beta.24
1170
+
1171
+ - removed source map generation by default
1172
+
1173
+ #0.0.1-beta.23
1174
+
1175
+ - windows path issue in i18I18NInjectIntoIndexPlugin plugin
1176
+
1177
+ #0.0.1-beta.22
1178
+
1179
+ - unusedfilesplugin issue fixed and print valid info
1180
+
1181
+ #0.0.1-beta.21
1182
+
1183
+ - production build hash details exported in index html
1184
+
1185
+ #0.0.1-beta.20
1186
+
1187
+ - list the name of un documented component file name
1188
+
1189
+ #0.0.1-beta.19
1190
+
1191
+ - publicpath callback plugin added
1192
+
1193
+ #0.0.1-beta.18
1194
+
1195
+ - production build issue fix
1196
+
1197
+ #0.0.1-beta.17
1198
+
1199
+ - redux version downgraded
1200
+
1201
+ #0.0.1-beta.16
1202
+
1203
+ - Babel env and react issue fix
1204
+
1205
+ #0.0.1-beta.15
1206
+
1207
+ - Few issue fixes
1208
+ - Webpack Manifest Plugin revamped
1209
+ - @zohodesk/screenshot-test package added
1210
+
1211
+ #0.0.1-beta.14
1212
+
1213
+ - Removed minify option in css-loader config
1214
+ - Removed optimize-css-assets-webpack-plugin
1215
+ - Added UglifyCSS webpack plugin
1216
+ - Packages version up to dated expect babel-loader
1217
+ - Docs umd build issue fixed
1218
+ - CSS public path in all configs
1219
+
1220
+ #0.0.1-beta.13
1221
+
1222
+ - Breaking issues fix
1223
+ - Add eslint config file in project root folder
1224
+ - Removed hot module and SSR concepts
1225
+ - Public Path change plugin revamp
1226
+ - Replaced style-loader with MiniCssExtractPlugin for overall
1227
+
1228
+ #0.0.1-beta.12
1229
+
1230
+ - ResourceHints Plugin added
1231
+ - able to set public paths for various types of assets
1232
+ - provided few cli options for existing options
1233
+ - change ext of files while copy
1234
+ - cache directory issue fix in dev mode
1235
+ - script instrument loader added
1236
+ - eslint windows machine issue fix
1237
+
1238
+ #0.0.1-beta.11
1239
+
1240
+ - css module extension changed to .modules.css from .mcss
1241
+
1242
+ #0.0.1-beta.10
1243
+
1244
+ - css module related changes
1245
+ - unit test case breaking issue fix
1246
+
1247
+ #0.0.1-beta.9
1248
+
1249
+ - dynamic import support
1250
+ - unit test case issue fix
1251
+
1252
+ #0.0.1-beta.8
1253
+
1254
+ - major issue fixes - previous version issues
1255
+ - eslint new rules added
1256
+ - reverted babel exclude option
1257
+
1258
+ #0.0.1-beta.7
1259
+
1260
+ - optionally attributes removal - prod mode
1261
+ - pre-commit issue fixed
1262
+ - eslint fix option added
1263
+ - used exclude instead of include in babel loader
1264
+ - option lookup issue fixed
1265
+
1266
+ #0.0.1-beta.6
1267
+
1268
+ - complext proptypes support for docs
1269
+
1270
+ #0.0.1-beta.5
1271
+
1272
+ - docs slowness issue fix
1273
+ - jest update issue fix
1274
+
1275
+ #0.0.1-beta.4
1276
+
1277
+ - css chunk related changes
1278
+ - manifest json related changes
1279
+ - css bundle issue fixed
1280
+
1281
+ #0.0.1-beta.3
1282
+
1283
+ - slowness issue fixed
1284
+ - efc build issue fixed
1285
+
1286
+ 0.0.1-beta.2 changes
1287
+
1288
+ - docs changes
1289
+ - precommit hook issue fix
1290
+ - compression support
1291
+ - prod string error fix
1292
+ - efc build support
1293
+ - single style tag support