@zohodesk/react-cli 0.0.1-exp.160.2 → 0.0.1-exp.161.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +183 -183
  3. package/README.md +746 -746
  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/configs/webpack.prod.config.js +2 -6
  11. package/lib/loaders/scriptInstrumentLoader.js +2 -2
  12. package/lib/loaders/workerLoader.js +9 -9
  13. package/lib/pluginUtils/getDevPlugins.js +5 -5
  14. package/lib/pluginUtils/getProdPlugins.js +5 -5
  15. package/lib/plugins/EFCPlugin.md +6 -6
  16. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  17. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  18. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  19. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  20. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +86 -86
  21. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  22. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  23. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  24. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  25. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  26. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  27. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  28. package/lib/postcss-plugins/RTLSplitPlugin.js +12 -12
  29. package/lib/sh/pre-commit.sh +34 -34
  30. package/lib/sh/reportPublish.sh +45 -45
  31. package/lib/utils/buildstats.html +148 -148
  32. package/lib/utils/resultSchema.json +73 -73
  33. package/package.json +144 -145
  34. package/templates/app/.eslintrc.js +140 -140
  35. package/templates/app/README.md +12 -12
  36. package/templates/app/app/index.html +24 -24
  37. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  38. package/templates/app/app/properties/i18nkeys.json +3 -3
  39. package/templates/app/docs/all.html +69 -69
  40. package/templates/app/mockapi/index.js +18 -18
  41. package/templates/app/package.json +37 -37
  42. package/templates/app/src/actions/SampleActions/index.js +37 -37
  43. package/templates/app/src/actions/index.js +65 -65
  44. package/templates/app/src/appUrls.js +19 -19
  45. package/templates/app/src/components/Alert/Alert.js +134 -134
  46. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  47. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  48. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  49. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  50. package/templates/app/src/components/Sample/SampleList.js +61 -61
  51. package/templates/app/src/components/Slider/Slider.css +41 -41
  52. package/templates/app/src/components/Slider/Slider.js +55 -55
  53. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  54. package/templates/app/src/containers/AppContainer/index.js +96 -96
  55. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  56. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  57. package/templates/app/src/containers/DevTools/index.js +10 -10
  58. package/templates/app/src/containers/Header/index.js +67 -67
  59. package/templates/app/src/containers/Header/index.module.css +43 -43
  60. package/templates/app/src/containers/Redirect/index.js +63 -63
  61. package/templates/app/src/containers/Redirector/index.js +47 -47
  62. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  63. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  64. package/templates/app/src/historyChange.js +5 -5
  65. package/templates/app/src/index.html +10 -10
  66. package/templates/app/src/index.js +24 -24
  67. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  68. package/templates/app/src/reducers/alertData.js +11 -11
  69. package/templates/app/src/reducers/index.js +6 -6
  70. package/templates/app/src/reducers/samples.js +19 -19
  71. package/templates/app/src/store/configureStore.dev.js +51 -51
  72. package/templates/app/src/store/configureStore.js +5 -5
  73. package/templates/app/src/store/configureStore.prod.js +26 -26
  74. package/templates/app/src/util/Common.js +5 -5
  75. package/templates/app/src/util/RequestAPI.js +132 -132
  76. package/templates/docs/all.html +249 -249
  77. package/templates/docs/component.html +178 -178
  78. package/templates/docs/components.html +221 -221
  79. package/templates/docs/css/b.min.css +6 -6
  80. package/templates/docs/css/component.css +42 -42
  81. package/templates/docs/css/componentTest.css +6 -6
  82. package/templates/docs/css/hopscotch.css +585 -585
  83. package/templates/docs/css/style.css +1022 -1022
  84. package/templates/docs/impactReportTemplate.html +154 -154
  85. package/templates/docs/index.html +1493 -1493
  86. package/templates/docs/js/active-line.js +72 -72
  87. package/templates/docs/js/b.min.js +7 -7
  88. package/templates/docs/js/codemirror.js +9680 -9680
  89. package/templates/docs/js/designTokens.js +334 -334
  90. package/templates/docs/js/j.min.js +4 -4
  91. package/templates/docs/js/javascript.js +874 -874
  92. package/templates/docs/js/matchbrackets.js +145 -145
package/README.md CHANGED
@@ -1,746 +1,746 @@
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
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