@zohodesk/react-cli 0.0.1-exp.176.1 → 0.0.1-exp.176.11

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