@zohodesk/react-cli 0.0.1-exp.176.3 → 0.0.1-exp.178.1

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