@zohodesk/react-cli 0.0.1-exp.159.1 → 0.0.1-exp.160.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +183 -183
  3. package/README.md +746 -742
  4. package/bin/cli.js +421 -421
  5. package/cert/cert.pem +37 -37
  6. package/cert/key.pem +27 -27
  7. package/files/eslintrc.js +62 -62
  8. package/files/prettierrc.js +3 -3
  9. package/lib/configs/webpack.css.umd.config.js +4 -4
  10. package/lib/loaders/scriptInstrumentLoader.js +2 -2
  11. package/lib/loaders/workerLoader.js +9 -9
  12. package/lib/pluginUtils/getDevPlugins.js +5 -5
  13. package/lib/pluginUtils/getProdPlugins.js +5 -5
  14. package/lib/plugins/EFCPlugin.md +6 -6
  15. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  16. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  17. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  18. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  19. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +86 -86
  20. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  21. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  22. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  23. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  24. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  25. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  26. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  27. package/lib/postcss-plugins/RTLSplitPlugin.js +12 -12
  28. package/lib/sh/pre-commit.sh +34 -34
  29. package/lib/sh/reportPublish.sh +45 -45
  30. package/lib/utils/buildstats.html +148 -148
  31. package/lib/utils/resultSchema.json +73 -73
  32. package/package.json +145 -144
  33. package/templates/app/.eslintrc.js +140 -140
  34. package/templates/app/README.md +12 -12
  35. package/templates/app/app/index.html +24 -24
  36. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  37. package/templates/app/app/properties/i18nkeys.json +3 -3
  38. package/templates/app/docs/all.html +69 -69
  39. package/templates/app/mockapi/index.js +18 -18
  40. package/templates/app/package.json +37 -37
  41. package/templates/app/src/actions/SampleActions/index.js +37 -37
  42. package/templates/app/src/actions/index.js +65 -65
  43. package/templates/app/src/appUrls.js +19 -19
  44. package/templates/app/src/components/Alert/Alert.js +134 -134
  45. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  46. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  47. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  48. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  49. package/templates/app/src/components/Sample/SampleList.js +61 -61
  50. package/templates/app/src/components/Slider/Slider.css +41 -41
  51. package/templates/app/src/components/Slider/Slider.js +55 -55
  52. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  53. package/templates/app/src/containers/AppContainer/index.js +96 -96
  54. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  55. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  56. package/templates/app/src/containers/DevTools/index.js +10 -10
  57. package/templates/app/src/containers/Header/index.js +67 -67
  58. package/templates/app/src/containers/Header/index.module.css +43 -43
  59. package/templates/app/src/containers/Redirect/index.js +63 -63
  60. package/templates/app/src/containers/Redirector/index.js +47 -47
  61. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  62. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  63. package/templates/app/src/historyChange.js +5 -5
  64. package/templates/app/src/index.html +10 -10
  65. package/templates/app/src/index.js +24 -24
  66. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  67. package/templates/app/src/reducers/alertData.js +11 -11
  68. package/templates/app/src/reducers/index.js +6 -6
  69. package/templates/app/src/reducers/samples.js +19 -19
  70. package/templates/app/src/store/configureStore.dev.js +51 -51
  71. package/templates/app/src/store/configureStore.js +5 -5
  72. package/templates/app/src/store/configureStore.prod.js +26 -26
  73. package/templates/app/src/util/Common.js +5 -5
  74. package/templates/app/src/util/RequestAPI.js +132 -132
  75. package/templates/docs/all.html +249 -249
  76. package/templates/docs/component.html +178 -178
  77. package/templates/docs/components.html +221 -221
  78. package/templates/docs/css/b.min.css +6 -6
  79. package/templates/docs/css/component.css +42 -42
  80. package/templates/docs/css/componentTest.css +6 -6
  81. package/templates/docs/css/hopscotch.css +585 -585
  82. package/templates/docs/css/style.css +1022 -1022
  83. package/templates/docs/impactReportTemplate.html +154 -154
  84. package/templates/docs/index.html +1493 -1493
  85. package/templates/docs/js/active-line.js +72 -72
  86. package/templates/docs/js/b.min.js +7 -7
  87. package/templates/docs/js/codemirror.js +9680 -9680
  88. package/templates/docs/js/designTokens.js +334 -334
  89. package/templates/docs/js/j.min.js +4 -4
  90. package/templates/docs/js/javascript.js +874 -874
  91. package/templates/docs/js/matchbrackets.js +145 -145
package/README.md CHANGED
@@ -1,742 +1,746 @@
1
- # React CLI
2
-
3
- A CLI tool for build modern web application and libraries
4
- # 0.0.1-beta.158
5
- - Removing source map files from service worker caching.
6
- # 0.0.1-beta.157
7
- - Experimental version issue fix(Dummy version removed)
8
- # 0.0.1-beta.156
9
- - ReportPublish issue fix
10
-
11
- # 0.0.1-beta.155
12
- - get impacted library source files option added
13
-
14
- # 0.0.1-beta.154
15
- - mockPrefix option for mock url prefix change
16
- - Issue fix:-
17
- - un wanted {{--js-smap}} in inital html without enable smap in build
18
-
19
- # 0.0.1-beta.153
20
- - Vendor include array added
21
- - If you need to include any thrid party js in vendor we can use this array
22
-
23
- # 0.0.1-beta.152
24
- impact servise related changes:-
25
- - 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)
26
- - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
27
- only work in two ways
28
- 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
29
- 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
30
- #### Urls are:-
31
- Below express path are added, For download zip files and
32
- - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
33
- - `/zips/build.zip` build zip file (contains bundled all files)
34
-
35
- # 0.0.1-beta.151
36
-
37
- - issue fix:- Docs config 'html-loader' options updated.
38
- - sslcertUpdate feature added
39
- - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
40
- - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
41
-
42
- # 0.0.1-beta.150
43
-
44
- - issue Fix:- in npm 7 option not working issue fixed
45
- - ssl certificate update
46
-
47
- # 0.0.1-beta.149
48
-
49
- - css, ltr and rtl chunk split based on [dir=ltr]
50
- - to enable ltr and rtl chunk spilt you have to add config in you package.json
51
- <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
52
- - we have added some options in EFCPlugin for rtlsplit related features.
53
- - we have expoed require function for only css impact related changes with flag
54
-
55
- # 0.0.1-beta.148
56
-
57
- - source map enabled in prod mode for debug client
58
- - crossorigin attribute added for scripts
59
-
60
- # 0.0.1-beta.147
61
-
62
- - reportpublish issue fix
63
-
64
- # 0.0.1-beta.146
65
-
66
- - while docs run LibraryImactPlugin not constructor issue fix
67
- - css loader added for css impact related changes
68
-
69
- # 0.0.1 -beta.145
70
-
71
- - LibraryImpactPlugin added
72
- - check impacted source components name if any version update happened with master
73
-
74
- # 0.0.1-beta.144
75
-
76
- - prod build bug fix
77
-
78
- # 0.0.1-beta.143
79
-
80
- - `babel-plugin-transform-remove-console` added for remove console properties except error and log
81
- - `console_exculde` script added if suppose enable same in dev mode
82
- - service worker plugin changes
83
- - library impact changes
84
-
85
- # 0.0.1-beta.142
86
-
87
- - `eslint-plugin-react-hooks` added to eslint support.
88
- - Updated exact versions to eslint plugins installation script.
89
-
90
- # 0.0.1-beta.141
91
-
92
- - report publish sh fixes
93
- - duplicate removal in impacted componentTest
94
-
95
- # 0.0.1-beta.140
96
-
97
- - copy-webpack-plugin bug fix
98
-
99
- # 0.0.1-beta.139
100
-
101
- - copy-webpack-plugin downgrade
102
- - babel runtime plugin issue fix in prod config
103
- - few enhancements
104
-
105
- # 0.0.1-beta.138
106
-
107
- - sstest library version updated
108
- - unitcase calcluation issues fixed
109
-
110
- # 0.0.1-beta.137
111
-
112
- - Third party css files loading issue fix
113
-
114
- # 0.0.1-beta.136
115
-
116
- - eslint support
117
-
118
- # 0.0.1-beta.135
119
-
120
- - windows publish issue
121
-
122
- # 0.0.1-beta.134
123
-
124
- - Build Issue Fix
125
-
126
- # 0.0.1-beta.133
127
-
128
- - CDN Changes in I18nSplitPlugin
129
- - nonce support added for i18n chunks
130
-
131
- # 0.0.1-beta.132
132
-
133
- - CDN Changes in EFC Plugin
134
-
135
- # 0.0.1-beta.131
136
-
137
- - Added Cdn Change Plugin
138
-
139
- # 0.0.1-beta.130
140
-
141
- - Babel 7 migration, ES6 build generation config and polyfill removal
142
- - CopyPlugin issue fix
143
-
144
- #0.0.1-beta.129
145
-
146
- - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
147
-
148
- # 0.0.1-beta.128
149
-
150
- - Added support to generate hash for the third party files(TPHashMappingPlugin)
151
-
152
- # 0.0.1-beta.127
153
-
154
- - service worker plugin - to recursively add multiple directories (recursive=true)
155
-
156
- # 0.0.1-beta.126
157
-
158
- - issue fix in i18n split plugin
159
-
160
- # expremental versions
161
-
162
- - 0.0.1-beta.121
163
- - 0.0.1-beta.122
164
- - 0.0.1-beta.123
165
- - 0.0.1-beta.124
166
- - 0.0.1-beta.125
167
-
168
- # 0.0.1-beta.120
169
-
170
- - issue fix in third party file copying
171
-
172
- # expremental versions
173
-
174
- - 0.0.1-beta.119
175
- - 0.0.1-beta.118
176
-
177
- #0.0.1-beta.117
178
-
179
- - createSDkFile otion added for efc
180
- - small fix in i18n split plugin
181
-
182
- #0.0.1-beta.116
183
-
184
- - thirdparty package move to build (tpFolder in app config)
185
-
186
- #0.0.1-beta.115
187
-
188
- - Added Web worker support
189
-
190
- #0.0.1-beta.114
191
-
192
- - i18n split based on chunk
193
- - to enable i18n chunk spilt you have to add config in you package.json
194
-
195
- #0.0.1-beta.113
196
-
197
- - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
198
-
199
- #0.0.1-beta.112
200
-
201
- - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
202
- - Service worker plugin changes
203
-
204
- #0.0.1-beta.111
205
-
206
- - hasRTL, selectorReplace Condition Separated
207
-
208
- #0.0.1-beta.110
209
-
210
- - SplitChunk Order Issue Fixed
211
- - https url issue Fixed
212
-
213
- #0.0.1-beta.109
214
-
215
- - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
216
-
217
- #0.0.1-beta.108
218
-
219
- - @zohodesk/screenshottest package version update (18)
220
-
221
- #0.0.1-beta.107
222
-
223
- - changed component without docs finder added
224
-
225
- #0.0.1-beta.106
226
-
227
- - custom chunk support changes
228
- - css absolute url fix
229
-
230
- #0.0.1-beta.105
231
-
232
- - @zohodesk/screenshottest package version update (17) with the issue fix
233
-
234
- #0.0.1-beta.104
235
-
236
- - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
237
-
238
- #0.0.1-beta.103
239
-
240
- - @zohodesk/screenshottest package version update (16) with the issue fix
241
-
242
- #0.0.1-beta.102
243
-
244
- - @zohodesk/screenshottest package version update (15) with the issue fix
245
-
246
- #0.0.1-beta.101
247
-
248
- - 100 changes readme missing
249
- - bundle analyser changes
250
-
251
- #0.0.1-beta.100
252
-
253
- - @zohodesk/screenshottest package version update with the issue fix
254
- - font public path replace issue for url fonts - fixed
255
-
256
- #0.0.1-beta.99
257
-
258
- - can't publish already published
259
-
260
- #0.0.1-beta.98
261
-
262
- - defer break public path adding regex - fixed
263
-
264
- #0.0.1-beta.97
265
-
266
- - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
267
-
268
- #0.0.1-beta.96
269
-
270
- - html plugin inject option expose and version udpate 4.2.0
271
- - src html change i18n removal issue fix
272
- - script loading defer added
273
- - added babel plugin to remove proptypes
274
-
275
- #0.0.1-beta.95
276
-
277
- - schemas/index.js - issue fix
278
-
279
- #0.0.1-beta.94
280
-
281
- - screenshot test library version update
282
- - ssserver issue fix
283
-
284
- #0.0.1-beta.93
285
-
286
- - selector replacer for Help Center usecase
287
- - eslint performance plugin
288
- - css classname hash selector support for docs
289
- - service worker plugin
290
-
291
- #0.0.1-beta.92
292
-
293
- - docs ui fixes and edit mode
294
- - @zohodesk/datetimejs version update
295
-
296
- #0.0.1-beta.91
297
-
298
- - repo clone command pull issue fix
299
- - docs css change
300
- - SSTest package version downgrade
301
-
302
- #0.0.1-beta.90
303
-
304
- - added support for copying Timezone data from @zohodesk/datetimejs
305
- - docstool changes
306
-
307
- #0.0.1-beta.89
308
-
309
- - CSP nonce support for initial assets `{{--CSP-nonce}}`
310
- - introduced new mode to disable react warns in dev mode (dev-no-warn)
311
- - docs ui fix
312
-
313
- #0.0.1-beta.88
314
-
315
- - Impact run and Master seperate during SSTEST
316
- - docs changes
317
- - filenames and packages addedd in cssHashSelectors option
318
-
319
- #0.0.1-beta.87
320
-
321
- - run screenshot test for impacted components
322
- - seperate master from the CI flow with the HBase storage
323
- - docs changes
324
- - coverage percentage check disabled
325
-
326
- #0.0.1-beta.86
327
-
328
- - exclude without js changes for unittest
329
- - express server history fallback refactored
330
-
331
- #0.0.1-beta.85
332
-
333
- - i18n placeholder removal issue fixed
334
- - css classname prefix moved to option. default is zd
335
-
336
- #0.0.1-beta.84
337
-
338
- - object spread operator support
339
-
340
- #0.0.1-beta.83
341
-
342
- - eslint report type by flag
343
- - unitcase file exclude array issue fix
344
- - sstesthack issue fix
345
-
346
- #0.0.1-beta.82
347
-
348
- - eslint impact run enable - completed
349
- - devplugin cleanupstats filename import issue fix
350
- - coveragecollector return format change
351
-
352
- #0.0.1-beta.81
353
-
354
- - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
355
-
356
- #0.0.1-beta.80
357
-
358
- - unitcase filecoverage testpath issue fix
359
- - shadowdom support
360
- - postpublish and sstest hack script
361
- - dependencies impact list
362
- - can change runtime chunk's character
363
- - font preload added
364
-
365
- #0.0.1-beta.79
366
-
367
- - unitcase filecoverage added and also codecoverage with dependencies spec added
368
-
369
- #0.0.1-beta.78
370
-
371
- - components and dot library's stats added with module stats
372
- - Mini css extract plugin's unwanted logs removed
373
- - runtime chunk added in dev mode
374
- - nodemon windows issue fix
375
- - testinfo failure missing while can't get coverage
376
- - performance eslint plugin added and normalizer moved under zohodesk
377
-
378
- #0.0.1-beta.77
379
-
380
- - @zohodesk/eslint-plugin-zsecurity version update
381
- - git pull origin with branch name while screenshot test after the branch switch
382
-
383
- #0.0.1-beta.76
384
-
385
- - breaking issue fix from last version ( prod config issue )
386
-
387
- #0.0.1-beta.75
388
-
389
- - sstest - reinstall dependencies after switch branch
390
-
391
- #0.0.1-beta.74
392
-
393
- - docs provider support (Component.\_provider)
394
-
395
- #0.0.1-beta.73
396
-
397
- #0.0.1-beta.72
398
-
399
- - run eslint security rules option enable
400
- - add the reportURL with the result.json file
401
- - mock server post api issue fix
402
-
403
- #0.0.1-beta.71
404
-
405
- - publicpath hard coding while flatten build issue fix
406
-
407
- #0.0.1-beta.70
408
-
409
- - css class compression flag enable
410
- - docs src URL update
411
-
412
- #0.0.1-beta.69
413
-
414
- - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
415
- - babel-lodash plugin fix with getdevplugin
416
- - cursor blink issue fix for sstest
417
- - in result.json unitcase coverage verified boolean added
418
-
419
- #0.0.1-beta.68
420
-
421
- - rtl ignore [dir] changes
422
-
423
- #0.0.1-beta.67
424
-
425
- - babel-plugin-transform-dynamic-import library added with package.json
426
- - schema change with hostname cli option s
427
-
428
- #0.0.1-beta.66
429
-
430
- - mockport hard coded issue fix
431
-
432
- #0.0.1-beta.65
433
-
434
- - window rtl build issue fix
435
- - separate rtl build support added like react-cli rtl ./src ./lib
436
-
437
- #0.0.1-beta.64
438
-
439
- - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
440
-
441
- #0.0.1-beta.63
442
-
443
- - LTR & RTL support added
444
-
445
- #0.0.1-beta.62
446
-
447
- - componentTest.css entry in components.html
448
-
449
- #0.0.1-beta.60
450
-
451
- - SSTMiddleware hook added for ssserver
452
- - remove some unwanted class in components.css
453
- - componentTest.css added with common animation break css rules
454
-
455
- #0.0.1-beta.59
456
-
457
- - vendor files exclude from app
458
- - since the chunk hash issue, moduleIds configured as named
459
-
460
- #0.0.1-beta.58
461
-
462
- - Push result json with the report zip
463
- - screenshot-test library Version update
464
-
465
- #0.0.1-beta.57
466
-
467
- - vendor chunk split issue fix
468
-
469
- #0.0.1-beta.56
470
-
471
- - css ordering issue fix
472
-
473
- #0.0.1-beta.55
474
-
475
- - prod build performance changes
476
- - css duplication issue fix
477
- - root chunk splitting logic change
478
-
479
- #0.0.1-beta.54
480
-
481
- - increased css hash size 5 to 10
482
-
483
- #0.0.1-beta.53
484
-
485
- - generate json file for all the test results during test run
486
- - sstest version update
487
- - some issue fixes
488
-
489
- #0.0.1-beta.52
490
-
491
- - template src folder missed issue fix because of npmignore all src folder
492
-
493
- #0.0.1-beta.51
494
-
495
- - template app updated with redux and router by kumaresan(thala)
496
-
497
- #0.0.1-beta.50
498
-
499
- - window machine css unique issue fix
500
-
501
- #0.0.1-beta.49
502
-
503
- - dev css unique issue fix
504
-
505
- #0.0.1-beta.48
506
-
507
- - telephony support css unique changes
508
-
509
- #0.0.1-beta.47
510
-
511
- - git pull during the branch switch in ssserver
512
- - common util file for pull and switch the branches for both git and hg
513
-
514
- #0.0.1-beta.46
515
-
516
- - ogg file support and tmpl file support
517
-
518
- #0.0.1-beta.45
519
-
520
- - checkout branch with force during sstest
521
-
522
- #0.0.1-beta.44
523
-
524
- - sstest master trigger issue fix
525
-
526
- #0.0.1-beta.43
527
-
528
- - get component object from docs server by http protocol during sstest
529
- - reach docs server by the IP address of the host.
530
- - get the current branch name by args
531
-
532
- #0.0.1-beta.42
533
-
534
- - className ssTest added and screenshot test version update
535
-
536
- #0.0.1-beta.41
537
-
538
- - i18n replace issue fix
539
-
540
- - some css changes related to above
541
- - screenshottest version update
542
-
543
- #0.0.1-beta.40
544
-
545
- - SSTMiddleware added to get hook from webpack build process to start sstest
546
- - run unit test for commited files except the spec file name from name list
547
- - publicpath added for i18n js files
548
-
549
- #0.0.1-beta.39
550
-
551
- - prod build check issue fix
552
-
553
- #0.0.1-beta.38
554
-
555
- - all unitcase runs only with master option removed
556
- - prod mode in dev setup flag issue fix
557
-
558
- #0.0.1-beta.37
559
-
560
- - removed hash for index.html and add publicpath when run prod mode in dev machine
561
- - screenshot version updated
562
- - docs build log issue fix
563
-
564
- #0.0.1-beta.36
565
-
566
- - reportpublish sh file report generation even if any breakages in test scripts
567
-
568
- #0.0.1-beta.35
569
-
570
- - full run of spec fils only for master option added
571
- - reportpublish sh for screenshot test report template issue fix
572
-
573
- #0.0.1-beta.34
574
-
575
- - monitor mockserver changes without affecting static server
576
-
577
- #0.0.1-beta.33
578
-
579
- - mail sent issue - fix
580
-
581
- #0.0.1-beta.32
582
-
583
- - ssl cert update
584
- - webpack-bundle-analyzer version update (because of npm audit fix)
585
-
586
- #0.0.1-beta.31
587
-
588
- - reportpublicpath plugin rename issue fix
589
-
590
- #0.0.1-beta.30
591
-
592
- - report generate plugin rename
593
- - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
594
- - reportpublish sh update
595
-
596
- #0.0.1-beta.29
597
-
598
- - screenshot version updated
599
- - unit test case commit coverage issue fix
600
-
601
- #0.0.1-beta.28
602
-
603
- - Unitcase coverage for changed files issue fix
604
-
605
- #0.0.1-beta.27
606
-
607
- - prod build size and hash tracking report added
608
-
609
- #0.0.1-beta.26
610
-
611
- - inlined assets and css assets publicpath collide issue fix
612
-
613
- #0.0.1-beta.25
614
-
615
- - inline image public path issue fix
616
- - docs css change for sstest
617
-
618
- #0.0.1-beta.24
619
-
620
- - removed source map generation by default
621
-
622
- #0.0.1-beta.23
623
-
624
- - windows path issue in i18I18NInjectIntoIndexPlugin plugin
625
-
626
- #0.0.1-beta.22
627
-
628
- - unusedfilesplugin issue fixed and print valid info
629
-
630
- #0.0.1-beta.21
631
-
632
- - production build hash details exported in index html
633
-
634
- #0.0.1-beta.20
635
-
636
- - list the name of un documented component file name
637
-
638
- #0.0.1-beta.19
639
-
640
- - publicpath callback plugin added
641
-
642
- #0.0.1-beta.18
643
-
644
- - production build issue fix
645
-
646
- #0.0.1-beta.17
647
-
648
- - redux version downgraded
649
-
650
- #0.0.1-beta.16
651
-
652
- - Babel env and react issue fix
653
-
654
- #0.0.1-beta.15
655
-
656
- - Few issue fixes
657
- - Webpack Manifest Plugin revamped
658
- - @zohodesk/screenshot-test package added
659
-
660
- #0.0.1-beta.14
661
-
662
- - Removed minify option in css-loader config
663
- - Removed optimize-css-assets-webpack-plugin
664
- - Added UglifyCSS webpack plugin
665
- - Packages version up to dated expect babel-loader
666
- - Docs umd build issue fixed
667
- - CSS public path in all configs
668
-
669
- #0.0.1-beta.13
670
-
671
- - Breaking issues fix
672
- - Add eslint config file in project root folder
673
- - Removed hot module and SSR concepts
674
- - Public Path change plugin revamp
675
- - Replaced style-loader with MiniCssExtractPlugin for overall
676
-
677
- #0.0.1-beta.12
678
-
679
- - ResourceHints Plugin added
680
- - able to set public paths for various types of assets
681
- - provided few cli options for existing options
682
- - change ext of files while copy
683
- - cache directory issue fix in dev mode
684
- - script instrument loader added
685
- - eslint windows machine issue fix
686
-
687
- #0.0.1-beta.11
688
-
689
- - css module extension changed to .modules.css from .mcss
690
-
691
- #0.0.1-beta.10
692
-
693
- - css module related changes
694
- - unit test case breaking issue fix
695
-
696
- #0.0.1-beta.9
697
-
698
- - dynamic import support
699
- - unit test case issue fix
700
-
701
- #0.0.1-beta.8
702
-
703
- - major issue fixes - previous version issues
704
- - eslint new rules added
705
- - reverted babel exclude option
706
-
707
- #0.0.1-beta.7
708
-
709
- - optionally attributes removal - prod mode
710
- - pre-commit issue fixed
711
- - eslint fix option added
712
- - used exclude instead of include in babel loader
713
- - option lookup issue fixed
714
-
715
- #0.0.1-beta.6
716
-
717
- - complext proptypes support for docs
718
-
719
- #0.0.1-beta.5
720
-
721
- - docs slowness issue fix
722
- - jest update issue fix
723
-
724
- #0.0.1-beta.4
725
-
726
- - css chunk related changes
727
- - manifest json related changes
728
- - css bundle issue fixed
729
-
730
- #0.0.1-beta.3
731
-
732
- - slowness issue fixed
733
- - efc build issue fixed
734
-
735
- 0.0.1-beta.2 changes
736
-
737
- - docs changes
738
- - precommit hook issue fix
739
- - compression support
740
- - prod string error fix
741
- - efc build support
742
- - single style tag support
1
+ # React CLI
2
+
3
+ A CLI tool for build modern web application and libraries
4
+ # 0.0.1-beta.160
5
+ - @zohodesk/normalizer package version updated to 1.0.2
6
+ # 0.0.1-beta.159
7
+ - @zohodesk/datetimejs package updated to beta.7
8
+ # 0.0.1-beta.158
9
+ - Removing source map files from service worker caching.
10
+ # 0.0.1-beta.157
11
+ - Experimental version issue fix(Dummy version removed)
12
+ # 0.0.1-beta.156
13
+ - ReportPublish issue fix
14
+
15
+ # 0.0.1-beta.155
16
+ - get impacted library source files option added
17
+
18
+ # 0.0.1-beta.154
19
+ - mockPrefix option for mock url prefix change
20
+ - Issue fix:-
21
+ - un wanted {{--js-smap}} in inital html without enable smap in build
22
+
23
+ # 0.0.1-beta.153
24
+ - Vendor include array added
25
+ - If you need to include any thrid party js in vendor we can use this array
26
+
27
+ # 0.0.1-beta.152
28
+ impact servise related changes:-
29
+ - 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)
30
+ - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
31
+ only work in two ways
32
+ 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
33
+ 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
34
+ #### Urls are:-
35
+ Below express path are added, For download zip files and
36
+ - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
37
+ - `/zips/build.zip` build zip file (contains bundled all files)
38
+
39
+ # 0.0.1-beta.151
40
+
41
+ - issue fix:- Docs config 'html-loader' options updated.
42
+ - sslcertUpdate feature added
43
+ - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
44
+ - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
45
+
46
+ # 0.0.1-beta.150
47
+
48
+ - issue Fix:- in npm 7 option not working issue fixed
49
+ - ssl certificate update
50
+
51
+ # 0.0.1-beta.149
52
+
53
+ - css, ltr and rtl chunk split based on [dir=ltr]
54
+ - to enable ltr and rtl chunk spilt you have to add config in you package.json
55
+ <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
56
+ - we have added some options in EFCPlugin for rtlsplit related features.
57
+ - we have expoed require function for only css impact related changes with flag
58
+
59
+ # 0.0.1-beta.148
60
+
61
+ - source map enabled in prod mode for debug client
62
+ - crossorigin attribute added for scripts
63
+
64
+ # 0.0.1-beta.147
65
+
66
+ - reportpublish issue fix
67
+
68
+ # 0.0.1-beta.146
69
+
70
+ - while docs run LibraryImactPlugin not constructor issue fix
71
+ - css loader added for css impact related changes
72
+
73
+ # 0.0.1 -beta.145
74
+
75
+ - LibraryImpactPlugin added
76
+ - check impacted source components name if any version update happened with master
77
+
78
+ # 0.0.1-beta.144
79
+
80
+ - prod build bug fix
81
+
82
+ # 0.0.1-beta.143
83
+
84
+ - `babel-plugin-transform-remove-console` added for remove console properties except error and log
85
+ - `console_exculde` script added if suppose enable same in dev mode
86
+ - service worker plugin changes
87
+ - library impact changes
88
+
89
+ # 0.0.1-beta.142
90
+
91
+ - `eslint-plugin-react-hooks` added to eslint support.
92
+ - Updated exact versions to eslint plugins installation script.
93
+
94
+ # 0.0.1-beta.141
95
+
96
+ - report publish sh fixes
97
+ - duplicate removal in impacted componentTest
98
+
99
+ # 0.0.1-beta.140
100
+
101
+ - copy-webpack-plugin bug fix
102
+
103
+ # 0.0.1-beta.139
104
+
105
+ - copy-webpack-plugin downgrade
106
+ - babel runtime plugin issue fix in prod config
107
+ - few enhancements
108
+
109
+ # 0.0.1-beta.138
110
+
111
+ - sstest library version updated
112
+ - unitcase calcluation issues fixed
113
+
114
+ # 0.0.1-beta.137
115
+
116
+ - Third party css files loading issue fix
117
+
118
+ # 0.0.1-beta.136
119
+
120
+ - eslint support
121
+
122
+ # 0.0.1-beta.135
123
+
124
+ - windows publish issue
125
+
126
+ # 0.0.1-beta.134
127
+
128
+ - Build Issue Fix
129
+
130
+ # 0.0.1-beta.133
131
+
132
+ - CDN Changes in I18nSplitPlugin
133
+ - nonce support added for i18n chunks
134
+
135
+ # 0.0.1-beta.132
136
+
137
+ - CDN Changes in EFC Plugin
138
+
139
+ # 0.0.1-beta.131
140
+
141
+ - Added Cdn Change Plugin
142
+
143
+ # 0.0.1-beta.130
144
+
145
+ - Babel 7 migration, ES6 build generation config and polyfill removal
146
+ - CopyPlugin issue fix
147
+
148
+ #0.0.1-beta.129
149
+
150
+ - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
151
+
152
+ # 0.0.1-beta.128
153
+
154
+ - Added support to generate hash for the third party files(TPHashMappingPlugin)
155
+
156
+ # 0.0.1-beta.127
157
+
158
+ - service worker plugin - to recursively add multiple directories (recursive=true)
159
+
160
+ # 0.0.1-beta.126
161
+
162
+ - issue fix in i18n split plugin
163
+
164
+ # expremental versions
165
+
166
+ - 0.0.1-beta.121
167
+ - 0.0.1-beta.122
168
+ - 0.0.1-beta.123
169
+ - 0.0.1-beta.124
170
+ - 0.0.1-beta.125
171
+
172
+ # 0.0.1-beta.120
173
+
174
+ - issue fix in third party file copying
175
+
176
+ # expremental versions
177
+
178
+ - 0.0.1-beta.119
179
+ - 0.0.1-beta.118
180
+
181
+ #0.0.1-beta.117
182
+
183
+ - createSDkFile otion added for efc
184
+ - small fix in i18n split plugin
185
+
186
+ #0.0.1-beta.116
187
+
188
+ - thirdparty package move to build (tpFolder in app config)
189
+
190
+ #0.0.1-beta.115
191
+
192
+ - Added Web worker support
193
+
194
+ #0.0.1-beta.114
195
+
196
+ - i18n split based on chunk
197
+ - to enable i18n chunk spilt you have to add config in you package.json
198
+
199
+ #0.0.1-beta.113
200
+
201
+ - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
202
+
203
+ #0.0.1-beta.112
204
+
205
+ - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
206
+ - Service worker plugin changes
207
+
208
+ #0.0.1-beta.111
209
+
210
+ - hasRTL, selectorReplace Condition Separated
211
+
212
+ #0.0.1-beta.110
213
+
214
+ - SplitChunk Order Issue Fixed
215
+ - https url issue Fixed
216
+
217
+ #0.0.1-beta.109
218
+
219
+ - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
220
+
221
+ #0.0.1-beta.108
222
+
223
+ - @zohodesk/screenshottest package version update (18)
224
+
225
+ #0.0.1-beta.107
226
+
227
+ - changed component without docs finder added
228
+
229
+ #0.0.1-beta.106
230
+
231
+ - custom chunk support changes
232
+ - css absolute url fix
233
+
234
+ #0.0.1-beta.105
235
+
236
+ - @zohodesk/screenshottest package version update (17) with the issue fix
237
+
238
+ #0.0.1-beta.104
239
+
240
+ - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
241
+
242
+ #0.0.1-beta.103
243
+
244
+ - @zohodesk/screenshottest package version update (16) with the issue fix
245
+
246
+ #0.0.1-beta.102
247
+
248
+ - @zohodesk/screenshottest package version update (15) with the issue fix
249
+
250
+ #0.0.1-beta.101
251
+
252
+ - 100 changes readme missing
253
+ - bundle analyser changes
254
+
255
+ #0.0.1-beta.100
256
+
257
+ - @zohodesk/screenshottest package version update with the issue fix
258
+ - font public path replace issue for url fonts - fixed
259
+
260
+ #0.0.1-beta.99
261
+
262
+ - can't publish already published
263
+
264
+ #0.0.1-beta.98
265
+
266
+ - defer break public path adding regex - fixed
267
+
268
+ #0.0.1-beta.97
269
+
270
+ - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
271
+
272
+ #0.0.1-beta.96
273
+
274
+ - html plugin inject option expose and version udpate 4.2.0
275
+ - src html change i18n removal issue fix
276
+ - script loading defer added
277
+ - added babel plugin to remove proptypes
278
+
279
+ #0.0.1-beta.95
280
+
281
+ - schemas/index.js - issue fix
282
+
283
+ #0.0.1-beta.94
284
+
285
+ - screenshot test library version update
286
+ - ssserver issue fix
287
+
288
+ #0.0.1-beta.93
289
+
290
+ - selector replacer for Help Center usecase
291
+ - eslint performance plugin
292
+ - css classname hash selector support for docs
293
+ - service worker plugin
294
+
295
+ #0.0.1-beta.92
296
+
297
+ - docs ui fixes and edit mode
298
+ - @zohodesk/datetimejs version update
299
+
300
+ #0.0.1-beta.91
301
+
302
+ - repo clone command pull issue fix
303
+ - docs css change
304
+ - SSTest package version downgrade
305
+
306
+ #0.0.1-beta.90
307
+
308
+ - added support for copying Timezone data from @zohodesk/datetimejs
309
+ - docstool changes
310
+
311
+ #0.0.1-beta.89
312
+
313
+ - CSP nonce support for initial assets `{{--CSP-nonce}}`
314
+ - introduced new mode to disable react warns in dev mode (dev-no-warn)
315
+ - docs ui fix
316
+
317
+ #0.0.1-beta.88
318
+
319
+ - Impact run and Master seperate during SSTEST
320
+ - docs changes
321
+ - filenames and packages addedd in cssHashSelectors option
322
+
323
+ #0.0.1-beta.87
324
+
325
+ - run screenshot test for impacted components
326
+ - seperate master from the CI flow with the HBase storage
327
+ - docs changes
328
+ - coverage percentage check disabled
329
+
330
+ #0.0.1-beta.86
331
+
332
+ - exclude without js changes for unittest
333
+ - express server history fallback refactored
334
+
335
+ #0.0.1-beta.85
336
+
337
+ - i18n placeholder removal issue fixed
338
+ - css classname prefix moved to option. default is zd
339
+
340
+ #0.0.1-beta.84
341
+
342
+ - object spread operator support
343
+
344
+ #0.0.1-beta.83
345
+
346
+ - eslint report type by flag
347
+ - unitcase file exclude array issue fix
348
+ - sstesthack issue fix
349
+
350
+ #0.0.1-beta.82
351
+
352
+ - eslint impact run enable - completed
353
+ - devplugin cleanupstats filename import issue fix
354
+ - coveragecollector return format change
355
+
356
+ #0.0.1-beta.81
357
+
358
+ - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
359
+
360
+ #0.0.1-beta.80
361
+
362
+ - unitcase filecoverage testpath issue fix
363
+ - shadowdom support
364
+ - postpublish and sstest hack script
365
+ - dependencies impact list
366
+ - can change runtime chunk's character
367
+ - font preload added
368
+
369
+ #0.0.1-beta.79
370
+
371
+ - unitcase filecoverage added and also codecoverage with dependencies spec added
372
+
373
+ #0.0.1-beta.78
374
+
375
+ - components and dot library's stats added with module stats
376
+ - Mini css extract plugin's unwanted logs removed
377
+ - runtime chunk added in dev mode
378
+ - nodemon windows issue fix
379
+ - testinfo failure missing while can't get coverage
380
+ - performance eslint plugin added and normalizer moved under zohodesk
381
+
382
+ #0.0.1-beta.77
383
+
384
+ - @zohodesk/eslint-plugin-zsecurity version update
385
+ - git pull origin with branch name while screenshot test after the branch switch
386
+
387
+ #0.0.1-beta.76
388
+
389
+ - breaking issue fix from last version ( prod config issue )
390
+
391
+ #0.0.1-beta.75
392
+
393
+ - sstest - reinstall dependencies after switch branch
394
+
395
+ #0.0.1-beta.74
396
+
397
+ - docs provider support (Component.\_provider)
398
+
399
+ #0.0.1-beta.73
400
+
401
+ #0.0.1-beta.72
402
+
403
+ - run eslint security rules option enable
404
+ - add the reportURL with the result.json file
405
+ - mock server post api issue fix
406
+
407
+ #0.0.1-beta.71
408
+
409
+ - publicpath hard coding while flatten build issue fix
410
+
411
+ #0.0.1-beta.70
412
+
413
+ - css class compression flag enable
414
+ - docs src URL update
415
+
416
+ #0.0.1-beta.69
417
+
418
+ - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
419
+ - babel-lodash plugin fix with getdevplugin
420
+ - cursor blink issue fix for sstest
421
+ - in result.json unitcase coverage verified boolean added
422
+
423
+ #0.0.1-beta.68
424
+
425
+ - rtl ignore [dir] changes
426
+
427
+ #0.0.1-beta.67
428
+
429
+ - babel-plugin-transform-dynamic-import library added with package.json
430
+ - schema change with hostname cli option s
431
+
432
+ #0.0.1-beta.66
433
+
434
+ - mockport hard coded issue fix
435
+
436
+ #0.0.1-beta.65
437
+
438
+ - window rtl build issue fix
439
+ - separate rtl build support added like react-cli rtl ./src ./lib
440
+
441
+ #0.0.1-beta.64
442
+
443
+ - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
444
+
445
+ #0.0.1-beta.63
446
+
447
+ - LTR & RTL support added
448
+
449
+ #0.0.1-beta.62
450
+
451
+ - componentTest.css entry in components.html
452
+
453
+ #0.0.1-beta.60
454
+
455
+ - SSTMiddleware hook added for ssserver
456
+ - remove some unwanted class in components.css
457
+ - componentTest.css added with common animation break css rules
458
+
459
+ #0.0.1-beta.59
460
+
461
+ - vendor files exclude from app
462
+ - since the chunk hash issue, moduleIds configured as named
463
+
464
+ #0.0.1-beta.58
465
+
466
+ - Push result json with the report zip
467
+ - screenshot-test library Version update
468
+
469
+ #0.0.1-beta.57
470
+
471
+ - vendor chunk split issue fix
472
+
473
+ #0.0.1-beta.56
474
+
475
+ - css ordering issue fix
476
+
477
+ #0.0.1-beta.55
478
+
479
+ - prod build performance changes
480
+ - css duplication issue fix
481
+ - root chunk splitting logic change
482
+
483
+ #0.0.1-beta.54
484
+
485
+ - increased css hash size 5 to 10
486
+
487
+ #0.0.1-beta.53
488
+
489
+ - generate json file for all the test results during test run
490
+ - sstest version update
491
+ - some issue fixes
492
+
493
+ #0.0.1-beta.52
494
+
495
+ - template src folder missed issue fix because of npmignore all src folder
496
+
497
+ #0.0.1-beta.51
498
+
499
+ - template app updated with redux and router by kumaresan(thala)
500
+
501
+ #0.0.1-beta.50
502
+
503
+ - window machine css unique issue fix
504
+
505
+ #0.0.1-beta.49
506
+
507
+ - dev css unique issue fix
508
+
509
+ #0.0.1-beta.48
510
+
511
+ - telephony support css unique changes
512
+
513
+ #0.0.1-beta.47
514
+
515
+ - git pull during the branch switch in ssserver
516
+ - common util file for pull and switch the branches for both git and hg
517
+
518
+ #0.0.1-beta.46
519
+
520
+ - ogg file support and tmpl file support
521
+
522
+ #0.0.1-beta.45
523
+
524
+ - checkout branch with force during sstest
525
+
526
+ #0.0.1-beta.44
527
+
528
+ - sstest master trigger issue fix
529
+
530
+ #0.0.1-beta.43
531
+
532
+ - get component object from docs server by http protocol during sstest
533
+ - reach docs server by the IP address of the host.
534
+ - get the current branch name by args
535
+
536
+ #0.0.1-beta.42
537
+
538
+ - className ssTest added and screenshot test version update
539
+
540
+ #0.0.1-beta.41
541
+
542
+ - i18n replace issue fix
543
+
544
+ - some css changes related to above
545
+ - screenshottest version update
546
+
547
+ #0.0.1-beta.40
548
+
549
+ - SSTMiddleware added to get hook from webpack build process to start sstest
550
+ - run unit test for commited files except the spec file name from name list
551
+ - publicpath added for i18n js files
552
+
553
+ #0.0.1-beta.39
554
+
555
+ - prod build check issue fix
556
+
557
+ #0.0.1-beta.38
558
+
559
+ - all unitcase runs only with master option removed
560
+ - prod mode in dev setup flag issue fix
561
+
562
+ #0.0.1-beta.37
563
+
564
+ - removed hash for index.html and add publicpath when run prod mode in dev machine
565
+ - screenshot version updated
566
+ - docs build log issue fix
567
+
568
+ #0.0.1-beta.36
569
+
570
+ - reportpublish sh file report generation even if any breakages in test scripts
571
+
572
+ #0.0.1-beta.35
573
+
574
+ - full run of spec fils only for master option added
575
+ - reportpublish sh for screenshot test report template issue fix
576
+
577
+ #0.0.1-beta.34
578
+
579
+ - monitor mockserver changes without affecting static server
580
+
581
+ #0.0.1-beta.33
582
+
583
+ - mail sent issue - fix
584
+
585
+ #0.0.1-beta.32
586
+
587
+ - ssl cert update
588
+ - webpack-bundle-analyzer version update (because of npm audit fix)
589
+
590
+ #0.0.1-beta.31
591
+
592
+ - reportpublicpath plugin rename issue fix
593
+
594
+ #0.0.1-beta.30
595
+
596
+ - report generate plugin rename
597
+ - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
598
+ - reportpublish sh update
599
+
600
+ #0.0.1-beta.29
601
+
602
+ - screenshot version updated
603
+ - unit test case commit coverage issue fix
604
+
605
+ #0.0.1-beta.28
606
+
607
+ - Unitcase coverage for changed files issue fix
608
+
609
+ #0.0.1-beta.27
610
+
611
+ - prod build size and hash tracking report added
612
+
613
+ #0.0.1-beta.26
614
+
615
+ - inlined assets and css assets publicpath collide issue fix
616
+
617
+ #0.0.1-beta.25
618
+
619
+ - inline image public path issue fix
620
+ - docs css change for sstest
621
+
622
+ #0.0.1-beta.24
623
+
624
+ - removed source map generation by default
625
+
626
+ #0.0.1-beta.23
627
+
628
+ - windows path issue in i18I18NInjectIntoIndexPlugin plugin
629
+
630
+ #0.0.1-beta.22
631
+
632
+ - unusedfilesplugin issue fixed and print valid info
633
+
634
+ #0.0.1-beta.21
635
+
636
+ - production build hash details exported in index html
637
+
638
+ #0.0.1-beta.20
639
+
640
+ - list the name of un documented component file name
641
+
642
+ #0.0.1-beta.19
643
+
644
+ - publicpath callback plugin added
645
+
646
+ #0.0.1-beta.18
647
+
648
+ - production build issue fix
649
+
650
+ #0.0.1-beta.17
651
+
652
+ - redux version downgraded
653
+
654
+ #0.0.1-beta.16
655
+
656
+ - Babel env and react issue fix
657
+
658
+ #0.0.1-beta.15
659
+
660
+ - Few issue fixes
661
+ - Webpack Manifest Plugin revamped
662
+ - @zohodesk/screenshot-test package added
663
+
664
+ #0.0.1-beta.14
665
+
666
+ - Removed minify option in css-loader config
667
+ - Removed optimize-css-assets-webpack-plugin
668
+ - Added UglifyCSS webpack plugin
669
+ - Packages version up to dated expect babel-loader
670
+ - Docs umd build issue fixed
671
+ - CSS public path in all configs
672
+
673
+ #0.0.1-beta.13
674
+
675
+ - Breaking issues fix
676
+ - Add eslint config file in project root folder
677
+ - Removed hot module and SSR concepts
678
+ - Public Path change plugin revamp
679
+ - Replaced style-loader with MiniCssExtractPlugin for overall
680
+
681
+ #0.0.1-beta.12
682
+
683
+ - ResourceHints Plugin added
684
+ - able to set public paths for various types of assets
685
+ - provided few cli options for existing options
686
+ - change ext of files while copy
687
+ - cache directory issue fix in dev mode
688
+ - script instrument loader added
689
+ - eslint windows machine issue fix
690
+
691
+ #0.0.1-beta.11
692
+
693
+ - css module extension changed to .modules.css from .mcss
694
+
695
+ #0.0.1-beta.10
696
+
697
+ - css module related changes
698
+ - unit test case breaking issue fix
699
+
700
+ #0.0.1-beta.9
701
+
702
+ - dynamic import support
703
+ - unit test case issue fix
704
+
705
+ #0.0.1-beta.8
706
+
707
+ - major issue fixes - previous version issues
708
+ - eslint new rules added
709
+ - reverted babel exclude option
710
+
711
+ #0.0.1-beta.7
712
+
713
+ - optionally attributes removal - prod mode
714
+ - pre-commit issue fixed
715
+ - eslint fix option added
716
+ - used exclude instead of include in babel loader
717
+ - option lookup issue fixed
718
+
719
+ #0.0.1-beta.6
720
+
721
+ - complext proptypes support for docs
722
+
723
+ #0.0.1-beta.5
724
+
725
+ - docs slowness issue fix
726
+ - jest update issue fix
727
+
728
+ #0.0.1-beta.4
729
+
730
+ - css chunk related changes
731
+ - manifest json related changes
732
+ - css bundle issue fixed
733
+
734
+ #0.0.1-beta.3
735
+
736
+ - slowness issue fixed
737
+ - efc build issue fixed
738
+
739
+ 0.0.1-beta.2 changes
740
+
741
+ - docs changes
742
+ - precommit hook issue fix
743
+ - compression support
744
+ - prod string error fix
745
+ - efc build support
746
+ - single style tag support