@zohodesk/react-cli 0.0.1-exp.168.2 → 0.0.1-exp.168.3

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