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

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