@zohodesk/react-cli 0.0.1-beta.16 → 0.0.1-beta.160

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 (226) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.js +46 -3
  3. package/CHANGELOG.md +5 -0
  4. package/README.md +650 -0
  5. package/bin/cli.js +134 -27
  6. package/cert/cert.pem +37 -129
  7. package/cert/key.pem +27 -27
  8. package/cert/passphrase.pem +1 -0
  9. package/files/eslintrc.js +62 -0
  10. package/files/prettierrc.js +3 -0
  11. package/lib/babel/cmjs-plugins-presets.js +16 -9
  12. package/lib/babel/es-plugins-presets.js +26 -14
  13. package/lib/common/getEntries.js +33 -24
  14. package/lib/common/getPublicPathConfig.js +40 -0
  15. package/lib/common/index.js +27 -13
  16. package/lib/common/splitChunks.js +64 -26
  17. package/lib/common/sslcertUpdater.js +59 -0
  18. package/lib/common/templateParameters.js +25 -0
  19. package/lib/configs/jest.config.js +18 -28
  20. package/lib/configs/webpack.component.umd.config.js +31 -37
  21. package/lib/configs/webpack.css.umd.config.js +44 -44
  22. package/lib/configs/webpack.dev.config.js +113 -57
  23. package/lib/configs/webpack.docs.config.js +104 -98
  24. package/lib/configs/webpack.impact.config.js +116 -0
  25. package/lib/configs/webpack.prod.config.js +154 -86
  26. package/lib/hooks/docsProptypeHook.js +32 -38
  27. package/lib/jest/commitedFilesResult.js +144 -71
  28. package/lib/jest/coverageCollector.js +62 -29
  29. package/lib/jest/jsonMaker.js +54 -0
  30. package/lib/jest/preProcessors/cssPreprocessor.js +16 -18
  31. package/lib/jest/preProcessors/jsPreprocessor.js +5 -6
  32. package/lib/jest/preProcessors/otherFilesPreprocessor.js +5 -6
  33. package/lib/jest/result.js +91 -41
  34. package/lib/jest/run.js +74 -27
  35. package/lib/jest/setup.js +103 -102
  36. package/lib/loaderUtils/getCSSLoaders.js +77 -0
  37. package/lib/loaderUtils/getDevJsLoaders.js +30 -23
  38. package/lib/loaderUtils/index.js +14 -7
  39. package/lib/loaders/docsLoader.js +15 -15
  40. package/lib/loaders/docsPropsLoader.js +14 -17
  41. package/lib/loaders/fileBountryLoader.js +17 -0
  42. package/lib/loaders/fileLoader.js +47 -38
  43. package/lib/loaders/scriptInstrumentLoader.js +21 -20
  44. package/lib/loaders/selectorMappingLoader.js +75 -0
  45. package/lib/loaders/workerLoader.js +136 -0
  46. package/lib/middlewares/HMRMiddleware.js +59 -41
  47. package/lib/middlewares/SSTMiddleware.js +21 -0
  48. package/lib/pluginUtils/getDevPlugins.js +173 -26
  49. package/lib/pluginUtils/getDocsPlugins.js +32 -17
  50. package/lib/pluginUtils/getLibraryImactPlugins.js +23 -0
  51. package/lib/pluginUtils/getLibraryPlugins.js +8 -10
  52. package/lib/pluginUtils/getProdPlugins.js +238 -37
  53. package/lib/pluginUtils/getServerPlugins.js +8 -11
  54. package/lib/pluginUtils/getUMDCSSPlugins.js +11 -15
  55. package/lib/pluginUtils/getUMDComponentPlugins.js +11 -15
  56. package/lib/pluginUtils/index.js +36 -43
  57. package/lib/plugins/CdnChangePlugin.js +77 -0
  58. package/lib/plugins/CleanupStatsPlugin.js +28 -0
  59. package/lib/plugins/EFCPlugin.js +211 -0
  60. package/lib/plugins/EFCPlugin.md +6 -0
  61. package/lib/plugins/I18NInjectIntoIndexPlugin.js +141 -0
  62. package/lib/plugins/I18nSplitPlugin/I18nDebugPlugin.js +60 -0
  63. package/lib/plugins/I18nSplitPlugin/I18nDependency.js +44 -0
  64. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +266 -0
  65. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +183 -0
  66. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +100 -0
  67. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +86 -0
  68. package/lib/plugins/I18nSplitPlugin/README.md +25 -0
  69. package/lib/plugins/I18nSplitPlugin/index.js +185 -0
  70. package/lib/plugins/I18nSplitPlugin/utils/collectI18nKeys.js +64 -0
  71. package/lib/plugins/I18nSplitPlugin/utils/getI18nFileUrlPathTemplate.js +13 -0
  72. package/lib/plugins/I18nSplitPlugin/utils/getI18nKeysFormModules.js +26 -0
  73. package/lib/plugins/I18nSplitPlugin/utils/hashUtils.js +40 -0
  74. package/lib/plugins/I18nSplitPlugin/utils/index.js +31 -0
  75. package/lib/plugins/I18nSplitPlugin/utils/propertiesUtils.js +112 -0
  76. package/lib/plugins/ManifestPlugin.js +52 -63
  77. package/lib/plugins/ModuleStatsPlugin.js +98 -97
  78. package/lib/plugins/OptimizeJSPlugin.js +24 -41
  79. package/lib/plugins/PublicPathCallbackPlugin.js +63 -0
  80. package/lib/plugins/PublicPathChangePlugin.js +187 -174
  81. package/lib/plugins/ReportGeneratePlugin.js +181 -0
  82. package/lib/plugins/RequireVariablePublicPlugin.js +30 -0
  83. package/lib/plugins/ResourceHintsPlugin.js +53 -35
  84. package/lib/plugins/RtlSplitPlugin/OverwriteCssPathForRTL.js +80 -0
  85. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +82 -0
  86. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -0
  87. package/lib/plugins/RtlSplitPlugin/replaceCssDirTemplate.js +26 -0
  88. package/lib/plugins/ScriptInstrumentPlugin.js +22 -37
  89. package/lib/plugins/ServiceWorkerPlugin.js +107 -0
  90. package/lib/plugins/ShadowDOMSupportPlugin.js +270 -0
  91. package/lib/plugins/SourceMapHookPlugin.js +25 -31
  92. package/lib/plugins/TPHashMappingPlugin.js +67 -0
  93. package/lib/plugins/UglifyCSSPlugin.js +23 -30
  94. package/lib/plugins/UnusedFilesFindPlugin.js +150 -97
  95. package/lib/plugins/index.js +118 -55
  96. package/lib/plugins/libraryImpactPlugin.js +190 -0
  97. package/lib/plugins/webpackwatchrunplugin.js +26 -0
  98. package/lib/postcss-plugins/ExcludeRTLPlugin.js +23 -0
  99. package/lib/postcss-plugins/RTLSplitPlugin.js +138 -0
  100. package/lib/schemas/index.js +463 -52
  101. package/lib/servers/clusterHubServer.js +22 -26
  102. package/lib/servers/docsServer.js +3 -5
  103. package/lib/servers/docsServerCore.js +93 -85
  104. package/lib/servers/helpServer.js +19 -21
  105. package/lib/servers/httpsOptions.js +19 -0
  106. package/lib/servers/impactServer.js +99 -92
  107. package/lib/servers/mockserver.js +44 -0
  108. package/lib/servers/nowatchserver.js +275 -0
  109. package/lib/servers/scrServer.js +147 -0
  110. package/lib/servers/server.js +118 -124
  111. package/lib/servers/ssServer.js +107 -65
  112. package/lib/sh/reportPublish.sh +16 -10
  113. package/lib/templates/CoverageScriptTemplate.js +45 -18
  114. package/lib/templates/WMSTemplate.js +17 -18
  115. package/lib/templates/linterConstant.js +10 -0
  116. package/lib/utils/babelPresets.js +12 -5
  117. package/lib/utils/buildstats.html +148 -0
  118. package/lib/utils/clean.js +12 -11
  119. package/lib/utils/copy.js +13 -127
  120. package/lib/utils/copyTimezones.js +21 -0
  121. package/lib/utils/createEventStream.js +24 -19
  122. package/lib/utils/cssClassNameGenerate.js +70 -0
  123. package/lib/utils/cssURLReplacer.js +67 -54
  124. package/lib/utils/dependencyPostPublish.js +42 -0
  125. package/lib/utils/fileUtils.js +125 -0
  126. package/lib/utils/folderIterator.js +47 -0
  127. package/lib/utils/getComponents.js +126 -0
  128. package/lib/utils/getCurrentBranch.js +11 -17
  129. package/lib/utils/getDependenciesImpactList.js +151 -0
  130. package/lib/utils/getHash.js +26 -0
  131. package/lib/utils/getIp.js +20 -0
  132. package/lib/utils/getOptions.js +55 -30
  133. package/lib/utils/getServerURL.js +25 -8
  134. package/lib/utils/index.js +259 -82
  135. package/lib/utils/init.js +2 -2
  136. package/lib/utils/initPreCommitHook.js +40 -31
  137. package/lib/utils/jsonHelper.js +97 -0
  138. package/lib/utils/libraryImpactConfig.js +63 -0
  139. package/lib/utils/lint/addScripts.js +27 -0
  140. package/lib/utils/lint/checkExistingConfig.js +67 -0
  141. package/lib/utils/lint/copyConfigs.js +24 -0
  142. package/lib/utils/lint/index.js +54 -0
  143. package/lib/utils/lint/lintScripts.js +11 -0
  144. package/lib/utils/lint/lintSetup.js +31 -0
  145. package/lib/utils/lint/lintStagedPreCommitHook.js +7 -0
  146. package/lib/utils/lint/question.js +30 -0
  147. package/lib/utils/lintReporter.js +142 -0
  148. package/lib/utils/mailSender.js +16 -25
  149. package/lib/utils/pullOrigin.js +28 -0
  150. package/lib/utils/reinstallDependencies.js +133 -0
  151. package/lib/utils/removeAttributes.js +25 -23
  152. package/lib/utils/repoClone.js +56 -63
  153. package/lib/utils/request.js +64 -77
  154. package/lib/utils/resultSchema.json +73 -0
  155. package/lib/utils/rtl.js +42 -0
  156. package/lib/utils/setEnvVariables.js +5 -6
  157. package/lib/utils/ssTestHack.js +48 -0
  158. package/lib/utils/switchBranch.js +28 -0
  159. package/lib/utils/urlConcat.js +22 -0
  160. package/package.json +92 -64
  161. package/templates/app/.eslintrc.js +140 -0
  162. package/templates/app/README.md +12 -12
  163. package/templates/app/app/index.html +24 -8
  164. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  165. package/templates/app/app/properties/i18nkeys.json +3 -3
  166. package/templates/app/docs/all.html +69 -69
  167. package/templates/app/mockapi/index.js +18 -13
  168. package/templates/app/package.json +37 -17
  169. package/templates/app/src/actions/SampleActions/index.js +37 -0
  170. package/templates/app/src/actions/index.js +65 -0
  171. package/templates/app/src/appUrls.js +19 -0
  172. package/templates/app/src/components/Alert/Alert.js +134 -0
  173. package/templates/app/src/components/Alert/Alert.module.css +79 -0
  174. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -0
  175. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -0
  176. package/templates/app/src/components/Sample/Sample.module.css +11 -0
  177. package/templates/app/src/components/Sample/SampleList.js +61 -0
  178. package/templates/app/src/components/Slider/Slider.css +41 -0
  179. package/templates/app/src/components/Slider/Slider.js +55 -0
  180. package/templates/app/src/containers/AlertContainer/index.js +15 -0
  181. package/templates/app/src/containers/AppContainer/index.js +96 -0
  182. package/templates/app/src/containers/AppContainer/index.module.css +27 -0
  183. package/templates/app/src/containers/CustomMatch/index.js +65 -0
  184. package/templates/app/src/containers/DevTools/index.js +10 -0
  185. package/templates/app/src/containers/Header/index.js +67 -0
  186. package/templates/app/src/containers/Header/index.module.css +43 -0
  187. package/templates/app/src/containers/Redirect/index.js +63 -0
  188. package/templates/app/src/containers/Redirector/index.js +47 -0
  189. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -0
  190. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -0
  191. package/templates/app/src/historyChange.js +5 -0
  192. package/templates/app/src/index.html +10 -0
  193. package/templates/app/src/index.js +24 -0
  194. package/templates/app/src/middleware/PromiseMiddleware.js +59 -0
  195. package/templates/app/src/reducers/alertData.js +11 -0
  196. package/templates/app/src/reducers/index.js +6 -0
  197. package/templates/app/src/reducers/samples.js +19 -0
  198. package/templates/app/src/store/configureStore.dev.js +51 -0
  199. package/templates/app/src/store/configureStore.js +5 -0
  200. package/templates/app/src/store/configureStore.prod.js +26 -0
  201. package/templates/app/src/util/Common.js +5 -0
  202. package/templates/app/src/util/RequestAPI.js +132 -0
  203. package/templates/appold/README.md +12 -0
  204. package/templates/appold/app/index.html +8 -0
  205. package/templates/appold/app/properties/ApplicationResources_en_US.properties +1 -0
  206. package/templates/appold/app/properties/i18nkeys.json +3 -0
  207. package/templates/appold/docs/all.html +69 -0
  208. package/templates/appold/mockapi/index.js +13 -0
  209. package/templates/{app → appold}/mockapi/tickets.json +0 -0
  210. package/templates/appold/package.json +17 -0
  211. package/templates/appold/src/components/Text/Text.css +0 -0
  212. package/templates/appold/src/components/Text/Text.js +23 -0
  213. package/templates/appold/src/components/Text/__tests__/Text.spec.js +30 -0
  214. package/templates/appold/src/components/Text/docs/Text__default.docs.js +16 -0
  215. package/templates/appold/src/components/docs.js +1 -0
  216. package/templates/appold/src/components/index.js +5 -0
  217. package/templates/appold/src/index.js +13 -0
  218. package/templates/docs/all.html +1 -1
  219. package/templates/docs/component.html +110 -69
  220. package/templates/docs/components.html +221 -0
  221. package/templates/docs/css/component.css +12 -14
  222. package/templates/docs/css/componentTest.css +7 -0
  223. package/templates/docs/css/style.css +150 -206
  224. package/templates/docs/impactReportTemplate.html +154 -0
  225. package/templates/docs/index.html +1482 -1336
  226. package/templates/library/src/index.js +0 -0
package/README.md CHANGED
@@ -1,8 +1,658 @@
1
1
  # React CLI
2
2
 
3
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
4
653
 
5
654
  #0.0.1-beta.16
655
+
6
656
  - Babel env and react issue fix
7
657
 
8
658
  #0.0.1-beta.15