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

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