@zohodesk/react-cli 1.1.11-exp.4 → 1.1.11-exp.6

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 (422) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +180 -180
  3. package/.prettierrc +6 -6
  4. package/.vscode/settings.json +24 -24
  5. package/Changelog.md +1019 -1019
  6. package/README.md +1406 -1371
  7. package/bin/cli.js +458 -458
  8. package/docs/ComposeMinification.md +13 -13
  9. package/docs/CustomChunks.md +29 -29
  10. package/docs/DevServerPort.md +39 -39
  11. package/docs/DevStart.md +18 -18
  12. package/docs/HoverActive.md +12 -12
  13. package/docs/InstallNode.md +28 -28
  14. package/docs/MarkdownParser.md +17 -17
  15. package/docs/ReactLive.md +13 -13
  16. package/docs/SelectorWeight.md +8 -8
  17. package/docs/TODOS.md +10 -10
  18. package/docs/ValueReplacer.md +60 -60
  19. package/docs/VariableConversion.md +729 -729
  20. package/docs/patternFiltering.md +56 -56
  21. package/docs/warnings_while_install.txt +35 -35
  22. package/files/eslintrc.js +62 -62
  23. package/files/prettierrc.js +3 -3
  24. package/lib/configs/webpack.css.umd.config.js +4 -4
  25. package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
  26. package/lib/loaderUtils/getCSSLoaders.js +50 -50
  27. package/lib/loaders/workerLoader.js +9 -9
  28. package/lib/pluginUtils/getDevPlugins.js +8 -5
  29. package/lib/pluginUtils/getProdPlugins.js +23 -7
  30. package/lib/plugins/CustomAttributePlugin.md +35 -35
  31. package/lib/plugins/EFCPlugin.md +6 -6
  32. package/lib/plugins/EfcResourceCleanupPlugin.js +39 -0
  33. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  34. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  35. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  36. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  37. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
  38. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  39. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  40. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  41. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  42. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  43. package/lib/plugins/SelectorPlugin.js +29 -29
  44. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  45. package/lib/plugins/StatsPlugin.js +118 -0
  46. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  47. package/lib/plugins/VariableConversionCollector.js +59 -59
  48. package/lib/plugins/utils/fileHandling.js +4 -4
  49. package/lib/plugins/variableConvertorUtils.js +11 -13
  50. package/lib/postcss-plugins/RTLSplitPlugin.js +10 -10
  51. package/lib/postcss-plugins/ValueReplacer.js +0 -7
  52. package/lib/postcss-plugins/__test__/test1Input.css +38 -38
  53. package/lib/postcss-plugins/__test__/test1Output.css +38 -38
  54. package/lib/postcss-plugins/hoverActivePlugin.js +3 -3
  55. package/lib/postcss-plugins/variableModificationPlugin/index.js +17 -65
  56. package/lib/schemas/index.js +9 -0
  57. package/lib/sh/pre-commit.sh +34 -34
  58. package/lib/sh/reportPublish.sh +45 -45
  59. package/lib/utils/buildstats.html +148 -148
  60. package/lib/utils/cssClassNameGenerate.js +13 -13
  61. package/lib/utils/getOptions.js +2 -1
  62. package/lib/utils/object-manipulation.js +48 -0
  63. package/lib/utils/resultSchema.json +73 -73
  64. package/npm-shrinkwrap.json +33485 -33485
  65. package/npm8.md +9 -9
  66. package/package.json +123 -123
  67. package/packages/client_build_tool/lib/allCommandsConfigs.js +1 -3
  68. package/packages/client_build_tool/lib/{logger.js → buildToolLoggers.js} +5 -7
  69. package/packages/client_build_tool/lib/commands/build/commandExecutor.js +7 -3
  70. package/packages/client_build_tool/lib/commands/build/config.js +2 -2
  71. package/packages/client_build_tool/lib/commands/build/index.js +35 -0
  72. package/packages/client_build_tool/lib/commands/{start/optionsProcessor.js → build/optionsProcesser.js} +14 -14
  73. package/packages/client_build_tool/lib/commands/buildEs/commandExecutor.js +4 -20
  74. package/packages/client_build_tool/lib/commands/buildEs/config.js +2 -2
  75. package/packages/client_build_tool/lib/commands/buildLib/commandExecutor.js +4 -20
  76. package/packages/client_build_tool/lib/commands/buildLib/config.js +2 -2
  77. package/packages/client_build_tool/lib/commands/start/commandExecutor.js +1 -0
  78. package/packages/client_build_tool/lib/commands/start/config.js +2 -2
  79. package/packages/client_build_tool/lib/commands/start/optionsProcesser.js +36 -0
  80. package/packages/client_build_tool/lib/commands/start/postProcesser.js +10 -0
  81. package/packages/client_build_tool/lib/commands/start/preProcesser.js +10 -0
  82. package/packages/client_build_tool/lib/commandsRouter.js +16 -21
  83. package/packages/client_build_tool/lib/shared/bundler/webpack/common/decidePublicPath.js +3 -1
  84. package/packages/client_build_tool/lib/shared/bundler/webpack/common/nameTemplates.js +13 -32
  85. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/CdnChangePlugin.js +24 -15
  86. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/EFCPlugin.js +1 -0
  87. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/ContributionGuide.md +10 -10
  88. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nKeysIdentifer.js +80 -20
  89. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nSplit.md +95 -95
  90. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/README.md +25 -25
  91. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/createHash.js +5 -5
  92. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/getI18nDependency.js +99 -0
  93. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/getI18nLoadingRuntimeModule.js +14 -9
  94. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/getI18nModule.js +201 -0
  95. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/index.js +374 -12
  96. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/optionsHandler.js +0 -1
  97. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/templateFileName.js +12 -6
  98. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/templateHashHelpers.js +23 -23
  99. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/collectI18nKeys.js +8 -11
  100. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/propertiesUtils.js +12 -14
  101. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/OverwriteCssPathForRTL.js +5 -4
  102. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/RtlCssPlugin.js +17 -12
  103. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/RtrSplit.md +34 -34
  104. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/replaceCssDirTemplate.js +1 -13
  105. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ServiceWorkerPlugin.js +124 -79
  106. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/{UglifyCSSPlugin/index.js.js → UglifyCSSPlugin.js} +2 -2
  107. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_postcss_loaders/ExcludePlugin.js +58 -0
  108. package/packages/client_build_tool/lib/shared/{postcss/custom_postcss_plugins → bundler/webpack/custom_postcss_loaders}/RTLSplitPlugin.js +10 -10
  109. package/packages/client_build_tool/lib/shared/bundler/webpack/devServerConfig.js +34 -0
  110. package/packages/client_build_tool/lib/shared/bundler/webpack/getCSSLoaders.js +12 -9
  111. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/assetLoaders.js +2 -0
  112. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/babelLoaderConfig.js +10 -4
  113. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configsAssetsLoaders.js +44 -44
  114. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/cssClassNameGenerate.js +43 -19
  115. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/getCssLoaderOptions.js +2 -0
  116. package/packages/client_build_tool/lib/shared/bundler/webpack/loaders/workerLoader.js +8 -8
  117. package/packages/client_build_tool/lib/shared/bundler/webpack/optimizationConfig.js +5 -9
  118. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCdnChangePlugin.js +4 -13
  119. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCopyThirdpartyFile.js +38 -0
  120. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configEnvVariables.js +2 -5
  121. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configHtmlWebpackPlugin.js +10 -38
  122. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configI18nSplitPlugin.js +0 -6
  123. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configProgressPlugin.js +2 -7
  124. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configServiceWorkerPlugin.js +3 -25
  125. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configUglifyCSSPlugin.js +15 -0
  126. package/packages/client_build_tool/lib/shared/bundler/webpack/plugins.js +9 -18
  127. package/packages/client_build_tool/lib/shared/bundler/webpack/postcssPlugins.js +36 -0
  128. package/packages/client_build_tool/lib/shared/bundler/webpack/resolvers.js +12 -19
  129. package/packages/client_build_tool/lib/shared/bundler/webpack/splitChunksConfig.js +1 -117
  130. package/packages/client_build_tool/lib/shared/bundler/webpack/webpack.dev.config.js +17 -0
  131. package/packages/client_build_tool/lib/shared/bundler/webpack/webpackBuild.js +4 -7
  132. package/packages/client_build_tool/lib/shared/bundler/webpack/webpackConfig.js +13 -15
  133. package/packages/client_build_tool/lib/shared/commands-utlis/doBasicRequiermentCheck.js +16 -0
  134. package/packages/client_build_tool/lib/shared/{commands-utils → commands-utlis}/getCliPath.js +7 -8
  135. package/packages/client_build_tool/lib/shared/{commands-utils → commands-utlis}/index.js +3 -3
  136. package/packages/client_build_tool/lib/shared/commands-utlis/spanSync.js +35 -0
  137. package/packages/client_build_tool/lib/shared/constants.js +5 -17
  138. package/packages/client_build_tool/lib/shared/schemas/applyValuesToShema.js +37 -0
  139. package/packages/client_build_tool/lib/{schemas → shared/schemas}/cliArgsToObject.js +10 -12
  140. package/packages/client_build_tool/lib/shared/schemas/defaultConfigValues.js +119 -0
  141. package/packages/client_build_tool/lib/shared/schemas/deprecatedOptionsHandler.js +65 -0
  142. package/packages/client_build_tool/lib/shared/schemas/getCWD.js +23 -0
  143. package/packages/client_build_tool/lib/{schemas → shared/schemas}/getNpmVersion.js +2 -3
  144. package/packages/client_build_tool/lib/{schemas → shared/schemas}/npmConfigToObject.js +9 -12
  145. package/packages/client_build_tool/lib/shared/schemas/oldDefaultConfigValues.js +480 -0
  146. package/packages/client_build_tool/lib/{schemas → shared/schemas}/readOptions.js +12 -11
  147. package/packages/client_build_tool/lib/{schemas/readOptionsForConfigFile.js → shared/schemas/readOptionsForPackageJson.js} +2 -18
  148. package/packages/client_build_tool/lib/shared/schemas/readOptionsOld.js +152 -0
  149. package/packages/client_build_tool/lib/shared/server/cert/Tsicsezwild-22-23.crt +37 -0
  150. package/packages/client_build_tool/lib/shared/server/cert/Tsicsezwild-22-23.key +27 -0
  151. package/packages/client_build_tool/lib/shared/server/configWebpackDevMiddleware.js +3 -4
  152. package/packages/client_build_tool/lib/shared/server/{corsHandling.js → corsHandleing.js} +12 -5
  153. package/packages/client_build_tool/lib/shared/server/getIp.js +3 -3
  154. package/packages/client_build_tool/lib/shared/server/httpsOptions.js +32 -25
  155. package/packages/client_build_tool/lib/shared/server/initialHTMLHandling.js +21 -54
  156. package/packages/client_build_tool/lib/shared/server/serveContextFiles.js +0 -1
  157. package/packages/client_build_tool/lib/shared/server/serverBywebpackDevMiddleware.js +10 -6
  158. package/packages/client_build_tool/lib/shared/server/startHttpServer.js +2 -2
  159. package/packages/client_build_tool/lib/shared/server/startHttpsServer.js +2 -6
  160. package/packages/client_build_tool/lib/shared/server/unwanted/devServerUtlis.js +1 -0
  161. package/packages/client_build_tool/lib/shared/server/unwanted/webpackConfig.js +32 -0
  162. package/packages/client_build_tool/lib/shared/server/unwanted/websocketMockSetup.js +7 -7
  163. package/packages/client_build_tool/lib/shared/server/urlConcat.js +10 -17
  164. package/packages/client_build_tool/node_modules/history/package.json +8 -11
  165. package/postpublish.js +8 -8
  166. package/templates/app/.eslintrc.js +140 -140
  167. package/templates/app/README.md +12 -12
  168. package/templates/app/app/index.html +24 -24
  169. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  170. package/templates/app/app/properties/i18nkeys.json +3 -3
  171. package/templates/app/docs/all.html +69 -69
  172. package/templates/app/mockapi/index.js +18 -18
  173. package/templates/app/package.json +37 -37
  174. package/templates/app/src/actions/SampleActions/index.js +37 -37
  175. package/templates/app/src/actions/index.js +65 -65
  176. package/templates/app/src/appUrls.js +19 -19
  177. package/templates/app/src/components/Alert/Alert.js +134 -134
  178. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  179. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  180. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  181. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  182. package/templates/app/src/components/Sample/SampleList.js +61 -61
  183. package/templates/app/src/components/Slider/Slider.css +41 -41
  184. package/templates/app/src/components/Slider/Slider.js +55 -55
  185. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  186. package/templates/app/src/containers/AppContainer/index.js +96 -96
  187. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  188. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  189. package/templates/app/src/containers/DevTools/index.js +10 -10
  190. package/templates/app/src/containers/Header/index.js +67 -67
  191. package/templates/app/src/containers/Header/index.module.css +43 -43
  192. package/templates/app/src/containers/Redirect/index.js +63 -63
  193. package/templates/app/src/containers/Redirector/index.js +47 -47
  194. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  195. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  196. package/templates/app/src/historyChange.js +5 -5
  197. package/templates/app/src/index.html +10 -10
  198. package/templates/app/src/index.js +24 -24
  199. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  200. package/templates/app/src/reducers/alertData.js +11 -11
  201. package/templates/app/src/reducers/index.js +6 -6
  202. package/templates/app/src/reducers/samples.js +19 -19
  203. package/templates/app/src/store/configureStore.dev.js +51 -51
  204. package/templates/app/src/store/configureStore.js +5 -5
  205. package/templates/app/src/store/configureStore.prod.js +26 -26
  206. package/templates/app/src/util/Common.js +5 -5
  207. package/templates/app/src/util/RequestAPI.js +132 -132
  208. package/templates/docs/all.html +250 -250
  209. package/templates/docs/component.html +179 -179
  210. package/templates/docs/components.html +222 -222
  211. package/templates/docs/css/b.min.css +6 -6
  212. package/templates/docs/css/component.css +42 -42
  213. package/templates/docs/css/componentTest.css +6 -6
  214. package/templates/docs/css/hopscotch.css +585 -585
  215. package/templates/docs/css/markdown.css +202 -202
  216. package/templates/docs/css/style.css +988 -988
  217. package/templates/docs/impactReportTemplate.html +154 -154
  218. package/templates/docs/index.html +1664 -1664
  219. package/templates/docs/js/active-line.js +72 -72
  220. package/templates/docs/js/b.min.js +7 -7
  221. package/templates/docs/js/codemirror.js +9680 -9680
  222. package/templates/docs/js/designTokens.js +334 -334
  223. package/templates/docs/js/j.min.js +4 -4
  224. package/templates/docs/js/javascript.js +874 -874
  225. package/templates/docs/js/matchbrackets.js +145 -145
  226. package/packages/client_build_tool/lib/commands/build/optionsProcessor.js +0 -45
  227. package/packages/client_build_tool/lib/commands/mockserver/commandExecutor.js +0 -43
  228. package/packages/client_build_tool/lib/commands/mockserver/config.js +0 -12
  229. package/packages/client_build_tool/lib/commands/start/postProcessor.js +0 -10
  230. package/packages/client_build_tool/lib/commands/start/preProcessor.js +0 -10
  231. package/packages/client_build_tool/lib/commands/template/commandExecutor.js +0 -32
  232. package/packages/client_build_tool/lib/commands/template/config.js +0 -12
  233. package/packages/client_build_tool/lib/commands/version/commandExecutor.js +0 -14
  234. package/packages/client_build_tool/lib/commands/version/config.js +0 -12
  235. package/packages/client_build_tool/lib/commands/version/errorHander.js +0 -10
  236. package/packages/client_build_tool/lib/index.js +0 -12
  237. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/otherTestCases.test.js +0 -234
  238. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/passingDifferentDataTypesToSchema.test.js +0 -103
  239. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/passingEmptyObjects.test.js +0 -41
  240. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertArray.test.js +0 -68
  241. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertNumber.test.js +0 -68
  242. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertObject.test.js +0 -141
  243. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertString.test.js +0 -68
  244. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertUndefinedAndNull.test.js +0 -132
  245. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertArray.test.js +0 -71
  246. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertNumber.test.js +0 -71
  247. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertObject.test.js +0 -73
  248. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertString.test.js +0 -71
  249. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertUndefinedAndNull.test.js +0 -138
  250. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/index.js +0 -34
  251. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/isObject.js +0 -10
  252. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/isValid.js +0 -14
  253. package/packages/client_build_tool/lib/schemas/defaultConfigValues.js +0 -244
  254. package/packages/client_build_tool/lib/schemas/defaultConfigValuesOnly.js +0 -161
  255. package/packages/client_build_tool/lib/schemas/deprecatedOptionsHandler.js +0 -67
  256. package/packages/client_build_tool/lib/schemas/giveDefaultValue.js +0 -18
  257. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Map.test.js +0 -15
  258. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/MathAndNumberMethod.test.js +0 -30
  259. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/ObjectAndModules.test.js +0 -47
  260. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Sets.test.js +0 -18
  261. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Symbol.test.js +0 -25
  262. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/arrowFunction.test.js +0 -34
  263. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/block-scoping.test.js +0 -18
  264. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/classes.test.js +0 -55
  265. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/defaultParameterValues.test.js +0 -18
  266. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/extraFeatures.test.js +0 -82
  267. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/forOf.test.js +0 -20
  268. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/promise.test.js +0 -22
  269. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/spreadOperator.test.js +0 -20
  270. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/spreadParams.test.js +0 -24
  271. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/stringAndArrayMethods.test.js +0 -67
  272. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/variables.test.js +0 -21
  273. package/packages/client_build_tool/lib/shared/babel/__test__/es2016/array-includes.test.js +0 -13
  274. package/packages/client_build_tool/lib/shared/babel/__test__/es2016/exponentationOperator.test.js +0 -20
  275. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/asyncAndawait.test.js +0 -23
  276. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-entries.test.js +0 -24
  277. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-getOwnproperties.test.js +0 -24
  278. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-values.test.js +0 -24
  279. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/stringMethods.test.js +0 -20
  280. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/asynchronous-iterator.test.js +0 -19
  281. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/object-rest-spread.test.js +0 -24
  282. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/promise-finally.test.js +0 -26
  283. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/regularExpressions.test.js +0 -35
  284. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/Json.stringify.test.js +0 -21
  285. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/arrayMethods.test.js +0 -31
  286. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/object-fromEntriesMethod.test.js +0 -13
  287. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/optionalCatchBinding.test.js +0 -23
  288. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/revisedFunctionToString.test.js +0 -17
  289. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/trim-startAndend-method.test.js +0 -20
  290. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/AssignmentOperator.test.js +0 -27
  291. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/Dynamic-Import.test.js +0 -19
  292. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/NullishOperator.test.js +0 -15
  293. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/bigInt.test.js +0 -13
  294. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/chainOperator.test.js +0 -17
  295. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/export-namespace-from.test.js +0 -12
  296. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/promiseAllSettledMathod.test.js +0 -17
  297. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/stringMatchMethod.test.js +0 -13
  298. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/NumericSeparator.test.js +0 -23
  299. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/logicalOperatorAssignments.test.js +0 -25
  300. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/promiseAny.test.js +0 -16
  301. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/stringReplaceMethod.test.js +0 -16
  302. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/Array-atMethod.test.js +0 -13
  303. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/ObjectKeyCheck.test.js +0 -27
  304. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/ObjecthasOwnMethod.test.js +0 -19
  305. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/RegexMatchIndices.test.js +0 -20
  306. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/String-atMethod.test.js +0 -15
  307. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/error.Cause.test.js +0 -23
  308. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/keysCheckinPrivateFields.test.js +0 -27
  309. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/privateMethodsAndFields.test.js +0 -23
  310. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/staticFieldsAndMethod.test.js +0 -54
  311. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/topLevelAwait.test.js +0 -11
  312. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/weakRef.test.js +0 -17
  313. package/packages/client_build_tool/lib/shared/babel/__test__/utilities.js +0 -28
  314. package/packages/client_build_tool/lib/shared/babel/babelWebConfig.js +0 -49
  315. package/packages/client_build_tool/lib/shared/babel/runBabelForJSFile.js +0 -24
  316. package/packages/client_build_tool/lib/shared/bundler/webpack/common/modeUtils.js +0 -31
  317. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/AddManifestJson/addFilesToManifestJson.js +0 -19
  318. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/AddManifestJson/utilities.js +0 -18
  319. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/EFCTemplatePlugin.js +0 -112
  320. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nFilesEmitPlugin.js +0 -172
  321. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nRuntimeDealerPlugin.js +0 -203
  322. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/LocaleChunkAssetsStore.js +0 -73
  323. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/ModulesI18nKeysStore.js +0 -88
  324. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/iterateModulesInChunk.js +0 -50
  325. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/classesAndObject.test.js +0 -56
  326. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/conditionalOperation.test.js +0 -154
  327. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function.test.js +0 -89
  328. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function2.test.js +0 -71
  329. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/loop.test.js +0 -112
  330. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minifyBooleanValues.test.js +0 -43
  331. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minimizeVariableNames.test.js +0 -45
  332. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/promise.test.js +0 -53
  333. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeCommentsAndEmptySpace.test.js +0 -13
  334. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeUnusedStrings.test.js +0 -14
  335. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/variableDeclaration.test.js +0 -30
  336. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/getChunkModules.js +0 -13
  337. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/InitialHtmlPlugin.js +0 -54
  338. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/addFilesNamesToManifestJson.test.js +0 -51
  339. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/createInitialEntries.test.js +0 -95
  340. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/removeHashFromFileName.test.js +0 -91
  341. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/addFilesNamesToManifestJson.js +0 -24
  342. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/createInitialEntries.js +0 -17
  343. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/createManifestJson.js +0 -35
  344. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/findInitialFileNames.js +0 -18
  345. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/index.js +0 -44
  346. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/removeHashFromFileName.js +0 -18
  347. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ResourceHintsPlugin.js +0 -165
  348. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/classHandling.js +0 -20
  349. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/index.js +0 -78
  350. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/selectorWeightPrefixAdder.js +0 -51
  351. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/windowsModification.js +0 -16
  352. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SourceMapPlugin/index.js +0 -38
  353. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifyCss1.test.js +0 -74
  354. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifycss.test.js +0 -64
  355. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/utilities.js +0 -28
  356. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/VariableConversionCollector/ErrorHandler.js +0 -62
  357. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/VariableConversionCollector/index.js +0 -361
  358. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/emitAsset.js +0 -14
  359. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/getInitialAssetsFuncTemplate.js +0 -57
  360. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/getInitialI18nAssetsArrayStr.js +0 -87
  361. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/classesAndObject.test.js +0 -56
  362. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/conditionalOperation.test.js +0 -154
  363. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/function.test.js +0 -89
  364. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/function2.test.js +0 -71
  365. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/loop.test.js +0 -112
  366. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/minifyBooleanValues.test.js +0 -43
  367. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/minimizeVariableNames.test.js +0 -45
  368. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/promise.test.js +0 -53
  369. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/removeCommentsAndEmptySpace.test.js +0 -13
  370. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/removeUnusedStrings.test.js +0 -14
  371. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/variableDeclaration.test.js +0 -30
  372. package/packages/client_build_tool/lib/shared/bundler/webpack/entryConfig.js +0 -28
  373. package/packages/client_build_tool/lib/shared/bundler/webpack/externals.js +0 -13
  374. package/packages/client_build_tool/lib/shared/bundler/webpack/getSourceMapType.js +0 -10
  375. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/checkIsPatternsMatchFilename.js +0 -52
  376. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configPostCssLoader.js +0 -37
  377. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configBundleAnalyzer.js +0 -40
  378. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCSSMinifierPlugin.js +0 -24
  379. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCopyPublicFolders.js +0 -80
  380. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configEFCTemplatePlugin.js +0 -46
  381. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configManifestJsonPlugin.js +0 -32
  382. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configResourceHintsPlugin.js +0 -19
  383. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configSelectorWeightPlugin.js +0 -28
  384. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configSourceMapPlugin.js +0 -20
  385. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configVariableConversionPlugin.js +0 -25
  386. package/packages/client_build_tool/lib/shared/bundler/webpack/statsConfig.js +0 -21
  387. package/packages/client_build_tool/lib/shared/bundler/webpack/utils/index.js +0 -26
  388. package/packages/client_build_tool/lib/shared/bundler/webpack/utils/updateArrayWithDefault.js +0 -18
  389. package/packages/client_build_tool/lib/shared/commands-utils/doBasicRequirementCheck.js +0 -17
  390. package/packages/client_build_tool/lib/shared/commands-utils/spawnSyncIO.js +0 -38
  391. package/packages/client_build_tool/lib/shared/fileUtils/copyFile.js +0 -38
  392. package/packages/client_build_tool/lib/shared/fileUtils/directoryIterator.js +0 -21
  393. package/packages/client_build_tool/lib/shared/fileUtils/watchRun.js +0 -100
  394. package/packages/client_build_tool/lib/shared/postcss/__test__/ignoreTestCases.test.js +0 -80
  395. package/packages/client_build_tool/lib/shared/postcss/__test__/postcss-rtl-all-cases.test.js +0 -119
  396. package/packages/client_build_tool/lib/shared/postcss/__test__/postcssRtl.spec.js +0 -34
  397. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/EmptyPlugin.js +0 -21
  398. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/constants.js +0 -10
  399. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/handleIgnores.js +0 -66
  400. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/index.js +0 -136
  401. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/insertBefore.js +0 -32
  402. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/isPreviouslyProcessed.js +0 -20
  403. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/replaceUtils.js +0 -20
  404. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/separateHoveredSelectorAndNormalSelector.js +0 -24
  405. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/specialCases.js +0 -43
  406. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/typeCheckUtils.js +0 -52
  407. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/SelectorReplace.js +0 -90
  408. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/ValueReplacer.js +0 -57
  409. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/VariableModificationPlugin/index.js +0 -343
  410. package/packages/client_build_tool/lib/shared/postcss/filterPluginsAllowedForSpecficFile.js +0 -55
  411. package/packages/client_build_tool/lib/shared/postcss/getAllowedPostCssPlugins.js +0 -30
  412. package/packages/client_build_tool/lib/shared/postcss/getSpecificPostCssPlugin.js +0 -58
  413. package/packages/client_build_tool/lib/shared/postcss/runPostCssForCssFile.js +0 -37
  414. package/packages/client_build_tool/lib/shared/server/mockApiHandler.js +0 -60
  415. package/packages/client_build_tool/lib/shared/server/mockServer.js +0 -41
  416. package/packages/client_build_tool/lib/shared/utils/requireLocalOrGlobal.js +0 -81
  417. package/packages/client_build_tool/lib/shared/utils/versionPrint.js +0 -20
  418. package/result.json +0 -1
  419. package/unittest/index.html +0 -37
  420. /package/packages/client_build_tool/lib/shared/{commands-utils → commands-utlis}/log.js +0 -0
  421. /package/packages/client_build_tool/lib/shared/{commands-utils → commands-utlis}/readArgsFormCommandLine.js +0 -0
  422. /package/packages/client_build_tool/lib/shared/{commands-utils → commands-utlis}/readOptionFormCommandLine.js +0 -0
package/README.md CHANGED
@@ -1,1371 +1,1406 @@
1
- # React CLI
2
-
3
- A CLI tool for build modern web application and libraries
4
-
5
- # Installation
6
-
7
- Below Steps:-
8
-
9
- > `npm i -g @zohodesk/react-cli`
10
-
11
- # Usage
12
-
13
- ## Step 1
14
-
15
- > `mkdir <your-project-folder> && cd mkdir <your-project-folder>`
16
-
17
- ## Step 2
18
-
19
- - create `package.json` file
20
- - add this to your `package.json`
21
-
22
- ```json
23
- {
24
- "scripts": {
25
- "start": "react-cli start",
26
- "build": "react-cli build"
27
- }
28
- }
29
- ```
30
-
31
- ## Step 3
32
-
33
- - create below files
34
- - `src/index.js`
35
- - `src/index.html`
36
-
37
- ## Step 4
38
-
39
- Now to run app
40
-
41
- > `npm run start`
42
-
43
- ---
44
-
45
- # Change Logs
46
-
47
- # 1.1.11 (4-8-2023)
48
-
49
- **Changes**
50
-
51
- - we have renamed our default config file as `react-cli.config.js` instead of `build.config.js`. But we still support `build.config.js` we will remove it in later major version.
52
-
53
- - Prop-type, Prop description, Default Props support for docs given.
54
- - Docs and Docs_Code UI updated.
55
-
56
- **Features:-**
57
-
58
- - custom classname prefix for separate packages now supported.
59
- - to use custom classnames for specific patterns, we use the following pattern in `app > customClassNamePrefix` or `docs > customClassNamePrefix` :
60
-
61
- ```
62
- "customClassNamePrefix" : [
63
- {
64
- "enable": true,
65
- "prefix": "[required-prefix]",
66
- "patterns":[
67
- "**/[path-name]/**/*.css"
68
- ]
69
- }
70
- ]
71
- ```
72
-
73
- For example,
74
-
75
- ```
76
- "customClassNamePrefix": [
77
- {
78
- "enable": true,
79
- "prefix": "zdSvg",
80
- "patterns": [
81
- "**/@zohodesk/svg/**/*.css"
82
- ]
83
- },
84
- ],
85
- ```
86
-
87
- **Issue Fix:**
88
-
89
- - typo fix, (../src/common/runPreProcess.js) to (../lib/common/runPreProcess.js) in cli.js our code.
90
-
91
- # 1.1.10 (2-8-2023)
92
-
93
- **Issue Fix:**
94
-
95
- - undefined plugin postcss issue fixed for docs.
96
- - unnecessary deprecation warning stopped. (for exclude config)
97
-
98
- # 1.1.9 (25-7-2023)
99
-
100
- **Features:-**
101
-
102
- - we have added config file support for react-cli schema. the default config file name `build.config.js` support added. In `build.config.js` you must export configuration object under `config` key. And Note: `build.config.js` is high priority then `package.json` `react-cli` config.
103
- - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
104
- only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
105
- - added support for pattern as function for custom chunks split logic.
106
- - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
107
- - added `postCssPluginOrder` feature :
108
-
109
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "false", default plugin order will be followed.
110
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "true", order preserved in `plugins` Object will be considered.
111
- - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to an array with plugins in a custom order, the custom order will be considered.
112
-
113
- - We use the same plugin names as in `patterns` for the plugins to execute successfully.
114
-
115
- **Issue Fix**
116
-
117
- - fixed file path separator issue with split chunks config for vendor exclude list for windows (that was work well for mac and ubuntu only issue in windows).
118
- - fixed cssUniqueness pattern not working in docs.
119
-
120
- **Changes**
121
-
122
- - previously all custom chunks are enforce true, no we have given support for enforce false for chunks on splitChunks config.
123
-
124
- # 1.1.8
125
-
126
- **Issue Fix**
127
-
128
- - Docs fix for Selector Replace 'always require argument' issue.
129
-
130
- # 1.1.7
131
-
132
- **Feature**
133
-
134
- - Markdown parser feature added in docs
135
- For more info please refer to :
136
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/MarkdownParser.md)
137
-
138
- # 1.1.6-exp.2
139
-
140
- - fixed file path separator issue with split chunks config for vendor exclude list.
141
- - added support for not doing enforce true for chunks on splitChunks config.
142
-
143
- # 1.1.5-exp.5
144
-
145
- - fixed the issues regarding custom chunks base config schema.
146
-
147
- # 1.1.5-exp.4
148
-
149
- - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
150
-
151
- # 1.1.5-exp.3
152
-
153
- - added options to split chunks base config
154
- - added support for passing custom chunks split logic as function.
155
-
156
- # 1.1.6
157
-
158
- **Issue Fix**
159
-
160
- - local install react-cli spawnSync Error fix in npm 8
161
- - babel version update issue fix (Cannot read properties of undefined (reading 'file')) and (BABEL_TRANSFORM_ERROR)
162
-
163
- # 1.1.5-exp.2
164
-
165
- **Issue Fix**
166
-
167
- - local install react-cli spawnSync Error fix in npm 8
168
-
169
- # 1.1.5
170
-
171
- **Issue Fix**
172
-
173
- - include pattern fix for variable converter plugin fixed
174
-
175
- # 1.1.4
176
-
177
- **Issue Fix**
178
-
179
- - global install react-cli spawnSync Error fix
180
- - `0px` variable value conversion issue fixed
181
- - pattern exclude for postcss plugins case fixed
182
-
183
- # 1.1.3
184
-
185
- **Issue Fix**
186
-
187
- - local install react-cli spawnSync Error fix
188
-
189
- # 1.1.2
190
-
191
- **Issue Fix**
192
-
193
- - ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
194
-
195
- # 1.1.1
196
-
197
- **Issue Fix**
198
-
199
- - docs component name incorrect in windows, when using --enableReactLive issue fixed.
200
-
201
- **Feature Update**
202
-
203
- - Support for desk-library to use Selector Replace plugin using individual script. To use `react-cli selectorReplacer [source] [target]`
204
-
205
- # 1.1.0
206
-
207
- **Feature Update**
208
-
209
- - Support for desk-library to use variable conversion plugin using individual script. To use `react-cli variableConverter [source] [target]`
210
- - pattern filter changes, new filter system instead of exclude to include or exclude files for plugins.
211
- For more info please refer to :
212
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/patternFiltering.md)
213
- - React Live feature implemented for Docs.
214
- [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ReactLive.md)
215
-
216
- # 1.0.3-beta.1
217
-
218
- **Issue Fix**
219
-
220
- - nock api not working issue fixed. This error throwing in @zohodesk/react-cli@1.0.2 version. but working in older versions ( 0.0.1-beta.178 )
221
-
222
- # 1.0.3
223
-
224
- **Feature Update**
225
-
226
- - Support for global httpsCerts usage
227
- - Support for global client_packages_group usage
228
- - custom attribute for dynamically loading chunks, In this version we merged changes from [0.0.1-beta.167.1](#0.0.1-beta.167.1).
229
- **Package Update**
230
- - @zohodesk/client_packages_group@**1.0.1** ==> @zohodesk/client_packages_group@**1.0.2**
231
-
232
- # 1.0.2
233
-
234
- **Feature Update**
235
-
236
- - Selector replace plugin made as a custom postcss-plugin with update to code that was unpublished in package.
237
-
238
- # 1.0.1
239
-
240
- **Issue Fix**
241
-
242
- - variable conversion for px and var(--) values in same declaration was not supported, now it is supported.
243
- - package-lock.json removed from `.npmignore`
244
-
245
- **Feature Update**
246
-
247
- - exclude added to Selector Plugin
248
-
249
- # 1.0.0
250
-
251
- ## Major Release
252
-
253
- **Changes:**
254
-
255
- - File support added for `.webp` for `docs`, `dev` and `prod` mode
256
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
257
-
258
- **Breaking Changes:**
259
-
260
- - We have remove ssl certificate for security reasons.
261
- So default https server won't run.
262
- In order to make it work as before you need to specify two things
263
- 1. install `@zohodesk-private/client_dev_cert`
264
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
265
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`. and mock wms `/wmsmockapi` won't work.
266
- So Please be carefull when you update this version or above without proper configaration.
267
-
268
- # 0.0.1-beta.178
269
-
270
- **Changes:**
271
-
272
- - File support added for `.webp` for `docs`, `dev` and `prod` mode
273
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
274
-
275
- **Breaking Changes:**
276
-
277
- - We have remove ssl certificate for security reasons.
278
- So default https server won't run.
279
- In order to make it work as before you need to specify two things
280
- 1. install `@zohodesk-private/client_dev_cert`
281
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
282
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
283
- So Please be carefull when you update this version or above without proper configaration.
284
-
285
- # 0.0.1-exp.178.2
286
-
287
- **Changes:**
288
-
289
- - File support added for `.webm` for `docs`, `dev` and `prod` mode
290
-
291
- # 0.0.1-exp.178.1
292
-
293
- **Breaking Changes:**
294
-
295
- - We have remove ssl certificate for security reasons.
296
- So default https server won't run.
297
- In order to make it work as before you need to specify two things
298
- 1. install `@zohodesk-private/client_dev_cert`
299
- 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
300
- unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
301
- So Please be carefull when you update this version or above without proper configaration.
302
-
303
- # 0.0.1-beta.177
304
-
305
- **Changes:**
306
-
307
- - We have added extra new Error option `MULTIPLE_OCCURANCES` support for **convert px to custom variables**.
308
- - In case css --variables are not assigned an error will be thrown and logged in `.cli/logs/unassignedVariables.log`. The unassigned variables can be manually assigned in `variableMapping.json` through two keys :
309
- - `changes` : for the variables that have to be converted, manual values can be added ( eg. "--wms_height": "height" )
310
- - `ignore` : for the variables that do not have to be considered, they can be added as keys with some value in `ignore` key (eg. "--gc_widget_video_bg": "undefined"). These values will be ignored.
311
- - strict mode can be enabled for checking --variables in `cssVariableReplacementOptions.strictMode`
312
- For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
313
-
314
- - and this version has same as `0.0.1-exp.176.12`, `0.0.1-exp.176.11`
315
-
316
- # 0.0.1-exp.176.12
317
-
318
- **Changes:**
319
-
320
- - Earlier versions of react-cli, we have been putting video files under images folder in build output, now, we have moved the video files under videos folder in build output.
321
-
322
- # 0.0.1-exp.176.11
323
-
324
- **Issue Fix:**
325
-
326
- - When we use `react-cli.app.publicPaths.callback` this option and video files import, in place of publicPath url, **null** was there instead of file type `video` issue fixed.
327
-
328
- # 0.0.1-beta.176
329
-
330
- **Features:**
331
-
332
- - we have added feature to **increase Selector weight** for all css classes in your project during build time.
333
- To enable this feature you have to set `react-cli.app.plugins.selectorWeight` as `true` in **package.json**.
334
- For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/SelectorWeight.md)
335
- - Updates to variable replacement are given :
336
- - css variables with -- are now supported due to the webpack plugin `VariableConversionCollector` that is generated for the same.
337
- - `DECIMAL_CHECK`, `DECIMAL_REJECT` are two new errors supported.
338
- - support for text-indent, clip, flex, flex-basis, row-gap, column-gap, gap properties are now given.
339
- For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
340
-
341
- # 0.0.1-beta.175
342
-
343
- **Issue Fix:-**
344
-
345
- - When we use "hoverActive" @import in css not working issue fixed
346
-
347
- **Features:**
348
-
349
- - `minifiy` option supported for minimize index.html file in during build time. You can use this option as "react-cli.app.htmlTemplate.minify" the options are same as https://github.com/jantimon/html-webpack-plugin#minification
350
-
351
- # 0.0.1-beta.174
352
-
353
- cli has been updated to fix compose issue faced when classname:hover exists and classname does not before compose
354
-
355
- **Issue Fix:-**
356
-
357
- - In react-cli version `0.0.1-beta.173`, when we use `start` command throws error issue fixed
358
- - while using `cssVariableReplacementOptions`, compose issue faced in css files, when classname:hover exists and classname does not exist issue fixed
359
-
360
- **Feature:-**
361
-
362
- - `react-cli.test.classnameFormat` option added to change CssModules (Ex: import style from "./a.module.css" ) className transform template unittest case.
363
- `classnameFormat` default value `[classname]` you can customize it. Example: `[classname]-[hash]`
364
-
365
- **Changes:-**
366
-
367
- - `jsonFile_test_*.json` files deleted after they used.
368
-
369
- # 0.0.1-beta.173
370
-
371
- **Features:**
372
-
373
- - we have added feature to **convert px to custom variables** for all css files in your project during build time.
374
- To enable this feature you have to set `react-cli.app.plugins.cssVariableReplacement` as `true` in **package.json**.
375
-
376
- Conversion for css Variables from Variables to px in Supportapp completed (`variableIgnore.js` && `pxParserPostcss.js` to be referred to), and px to custom variables through the new `variableModificationPlugin`. Error Log generation can also be converted on enabling
377
-
378
- For an more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
379
-
380
- # 0.0.1-beta.172
381
-
382
- We have renamed some options, For Our future features convenience.
383
- We have given fallback support.
384
- Deprecation Warnings:-
385
-
386
- - `react-cli.app.hasRTL` ==> `react-cli.app.plugins.hasRTL`
387
- - `react-cli.app.rtlExclude` ==> `react-cli.app.exclude.rtl`
388
-
389
- - `react-cli.docs.hasRTL` ==> `react-cli.docs.plugins.hasRTL`
390
- - `react-cli.docs.rtlExclude` ==> `react-cli.docs.exclude.rtl`
391
- these options have fallback support.
392
-
393
- # 0.0.1-beta.171
394
-
395
- Features added :
396
-
397
- 1. `react-cli.app.mediaQueryHoverActiveString` and `react-cli.docs.mediaQueryHoverActiveString` templates support added for @media(hover: hover) and @media(hover: none) queries. We can modify these to modify respective queries.
398
-
399
- # 0.0.1-beta.170
400
-
401
- this version has same as `0.0.1-exp.169.1`, `0.0.1-exp.169.2`
402
-
403
- # 0.0.1-exp.169.2
404
-
405
- 1. flags are converted to one variable 'plugin' and used in getCssLoaders.js.
406
- 2. files for exclusion can be put in seperate arrays in 'exclude' present in package.json.
407
- 3. `combinerMq` has been converted to `combinerMediaQuery` for clarity.
408
-
409
- # 0.0.1-exp.169.1
410
-
411
- File support added for mp4 for docs dev and prod mode
412
-
413
- # 0.0.1-beta.169
414
-
415
- this version has same as `0.0.1-exp.168.1`, `0.0.1-exp.168.2`, `0.0.1-exp.168.3` and below and some minor changes
416
-
417
- 1. `--efc_version=v3` flag added for change efc version via commmand line option
418
- 2. `hoverActive` flag added for conversion from usual hover to @media(hover:hover) and @media(hover:none) queries for hover support in mobile.
419
- 3. `combinerMq` flag added for combination of the media queries that might be appended or existing media queries that are duplicates to create one media query with all rules put together.
420
-
421
- # 0.0.1-exp.168.3
422
-
423
- Changes :
424
-
425
- 1. code optimization ( made functions for the hoverActive cases making it more easier to access)
426
- 2. handled `hover:ignore`, `active:ignore`, `hoverActive:ignore` cases for usual queries and media queries
427
-
428
- # 0.0.1-exp.168.2
429
-
430
- Changes :
431
-
432
- 1. hoverActive case handled with postcss `hover:hover` media query and `hover:none` media query is added
433
- 2. flag for hoverActive used to add/remove postcss changes
434
-
435
- # 0.0.1-exp.168.1
436
-
437
- Changes:-
438
-
439
- 1. `cliRootPath` option removed `react-cli.app.cliRootPath` in `package.json`
440
- Due to the reason we updated our logic to find package's executable path.
441
- 2. `--efc_output_file=efc-sdk-[version].js` option added to modify efc output file by terminal
442
- 3. added logic to print error message during command run, Previously when executable not found error messages not printed
443
-
444
- # 0.0.1-beta.168
445
-
446
- Changes:-
447
-
448
- 1. `enableChunkHash` option enabled for dev mode, use it as `react-cli.app.enableChunkHash` in `package.json`
449
- 2. `--enable_efc=true` option added to enable efc by terminal
450
- 3. unwanted pem files removed
451
-
452
- # 0.0.1-exp.167.1
453
-
454
- Features:-
455
-
456
- - In docs we have added `Description` for Component Props- check out it in `PropTypes` tab
457
-
458
- # 0.0.1-beta.167.1
459
-
460
- In this version we merged changes from [0.0.1-betaa.138.1](#0.0.1-betaa.138.1).
461
- and with [0.0.1-beta.167](#0.0.1-beta.167) version changes.
462
-
463
- # 0.0.1-beta.167
464
-
465
- SSL certificate update
466
- this version has same as `0.0.1-exp.166.1`, `0.0.1-exp.166.2` and below and some minor changes
467
- Features:-
468
-
469
- - `--shallow_clone` option to `react-cli clone` this option will be usefull for shallow cloning repos in build time we don't need commit messages it will be 2x fast this way
470
- - Example `react-cli clone --clone_type=git --clone_url=https://some.url --shallow_clone`
471
- - `cliRootPath` option added for npm workspace related path problems
472
- - Usage `package.json` , "react-cli" => "cliRootPath" stright key
473
- - `unstableDepsInverse` option added for use app need library first priority over react-cli packages
474
- - Usage `package.json` , "react-cli" => "unstableDepsInverse" stright key
475
-
476
- Issue Fix :-
477
-
478
- - In devmode initial html not recived after second rebuild issue fix.
479
- - typo fix `devBulid` to `devBuild`.
480
- - `disableES5Transpile` option missed in docs now added.
481
- - docs libAlias not work as app for example in app we always take `es` folder to build for treshaking and reasons,
482
- But that option not enabled in docs. now it is enabled.
483
- - In `react-cli devbuild` command options not working properly,
484
- when above command run via terminal not via npm run script options not working
485
- So we send that options to webpack then it works as expected.
486
- this behaviour need to check across os and need to be cross check with other commends as well for now we only fixed this
487
-
488
- # 0.0.1-exp.166.2
489
-
490
- Changes:-
491
-
492
- - `-w` option (watch option) added for `react-cli rtl`
493
- - Example `react-cli rtl ./src ./lib -w`
494
- <!-- need to handle `react-cli rtl` options correctly -->
495
- - disableES5Transpile option libAlias added for docs
496
-
497
- # 0.0.1-exp.166.1
498
-
499
- Changes:-
500
-
501
- - `__testUtils__/globals.js` to jest is not mantatory
502
- - disableES5Transpile option libAlias added
503
-
504
- # 0.0.1-beta.166
505
-
506
- this version has same as `# 0.0.1-exp.164.1`, `# 0.0.1-exp.164.2` and below and some minor changes
507
-
508
- - google chorme cors preflight issue fix
509
-
510
- # 0.0.1-beta.165
511
-
512
- - `valueReplacer` option added in shemas for font name replace related issue handling, for more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ValueReplacer.md)
513
- - `valuereplacer` option added in react-cli it takes three
514
- 1. sourceDir
515
- 2. distDir
516
- 3. `copyAll` is boolean flag which is for copy all other file or not. "true" means copy all files.
517
-
518
- # 0.0.1-exp.164.1
519
-
520
- - extra features in custom chunks reffer [this](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/CustomChunks.md)
521
-
522
- # 0.0.1-exp.164.2
523
-
524
- - `devbuild` option add to react cli
525
-
526
- # 0.0.1-beta.164
527
-
528
- - typo fix
529
-
530
- # 0.0.1-beta.163
531
-
532
- - **Issue Fix:-**
533
-
534
- - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
535
- - jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
536
-
537
- - **Features :-**
538
- - feature added for pre process logic
539
- - tailer made requirement for preprocess, just write node js file
540
- - mention file in `"react-cli" => "preprocess" => "runner"`
541
- - option parse logic added for react-cli (exprimental)
542
- - `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
543
-
544
- # 0.0.1-exp.162.2
545
-
546
- - **Optimazation:-**
547
- - double time minimize optimazation
548
-
549
- # 0.0.1-beta.162.1
550
-
551
- - **Issue Fix:-**
552
- - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
553
-
554
- # 0.0.1-beta.161.1
555
-
556
- - **Features :-**
557
- - feature added for pre process logic
558
- - tailer made requirement for preprocess, just write node js file
559
- - mention file in `"react-cli" => "preprocess" => "runner"`
560
- - option parse logic added for react-cli (exprimental)
561
-
562
- # 0.0.1-beta.162
563
-
564
- - @zohodesk/datetimejs package updated to beta.8
565
-
566
- # 0.0.1-beta.161
567
-
568
- - **Features :-**
569
- - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
570
- - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
571
- - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
572
- - `getInitalAssets` this function has two arguments `assetsType`, `lang`
573
- - `assetsType` are `js`, `css`, `i18n`
574
- - `lang` this argument only works when `i18n` is `assetsType`
575
- - feature added for efc `cdnStatement`
576
- - **Issue fixes:-**
577
- - css classname hash change issue fix
578
- - debug package conflit issue fix in nock in (react-cli test)
579
- - manifest.json css file name correction issue for rtl and ltr
580
-
581
- # 0.0.1-exp.161.2
582
-
583
- - Features
584
- - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
585
- - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
586
- - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
587
- - `getInitalAssets` this function has two arguments `assetsType`, `lang`
588
- - `assetsType` are `js`, `css`, `i18n`
589
- - `lang` this argument only works when `i18n` is `assetsType`
590
-
591
- # 0.0.1-exp.161.1
592
-
593
- - Features
594
- - feature added for efc `cdnStatement`
595
- - Issue fixes:-
596
- - css classname hash change issue fix
597
- - debug package conflit issue fix in nock in (react-cli test)
598
- - manifest.json css file name correction issue for rtl and ltr
599
-
600
- # 0.0.1-beta.160
601
-
602
- - @zohodesk/normalizer package version updated to 1.0.2
603
-
604
- # 0.0.1-beta.159
605
-
606
- - @zohodesk/datetimejs package updated to beta.7
607
-
608
- # 0.0.1-exp.159
609
-
610
- - issue fix:-
611
- - when rtl ltr css split enable manifest json css filename keys comes with hash .
612
-
613
- # 0.0.1-beta.158
614
-
615
- - Removing source map files from service worker caching.
616
-
617
- # 0.0.1-beta.157
618
-
619
- - Experimental version issue fix(Dummy version removed)
620
-
621
- # 0.0.1-beta.156
622
-
623
- - ReportPublish issue fix
624
-
625
- # 0.0.1-beta.155
626
-
627
- - get impacted library source files option added
628
-
629
- # 0.0.1-beta.154
630
-
631
- - mockPrefix option for mock url prefix change
632
- - Issue fix:-
633
- - un wanted {{--js-smap}} in inital html without enable smap in build
634
-
635
- # 0.0.1-beta.153
636
-
637
- - Vendor include array added
638
- - If you need to include any thrid party js in vendor we can use this array
639
-
640
- # 0.0.1-beta.152
641
-
642
- impact servise related changes:-
643
-
644
- - 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)
645
- - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
646
- only work in two ways
647
- 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
648
- 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
649
- #### Urls are:-
650
- Below express path are added, For download zip files and
651
- - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
652
- - `/zips/build.zip` build zip file (contains bundled all files)
653
-
654
- # 0.0.1-beta.151
655
-
656
- - issue fix:- Docs config 'html-loader' options updated.
657
- - sslcertUpdate feature added
658
- - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
659
- - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
660
-
661
- # 0.0.1-beta.150
662
-
663
- - issue Fix:- in npm 7 option not working issue fixed
664
- - ssl certificate update
665
-
666
- # 0.0.1-beta.149
667
-
668
- - css, ltr and rtl chunk split based on [dir=ltr]
669
- - to enable ltr and rtl chunk spilt you have to add config in you package.json
670
- <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
671
- - we have added some options in EFCPlugin for rtlsplit related features.
672
- - we have expoed require function for only css impact related changes with flag
673
-
674
- # 0.0.1-beta.148
675
-
676
- - source map enabled in prod mode for debug client
677
- - crossorigin attribute added for scripts
678
-
679
- # 0.0.1-beta.147
680
-
681
- - reportpublish issue fix
682
-
683
- # 0.0.1-beta.146
684
-
685
- - while docs run LibraryImactPlugin not constructor issue fix
686
- - css loader added for css impact related changes
687
-
688
- # 0.0.1 -beta.145
689
-
690
- - LibraryImpactPlugin added
691
- - check impacted source components name if any version update happened with master
692
-
693
- # 0.0.1-beta.144
694
-
695
- - prod build bug fix
696
-
697
- # 0.0.1-beta.143
698
-
699
- - `babel-plugin-transform-remove-console` added for remove console properties except error and log
700
- - `console_exculde` script added if suppose enable same in dev mode
701
- - service worker plugin changes
702
- - library impact changes
703
-
704
- # 0.0.1-beta.142
705
-
706
- - `eslint-plugin-react-hooks` added to eslint support.
707
- - Updated exact versions to eslint plugins installation script.
708
-
709
- # 0.0.1-beta.141
710
-
711
- - report publish sh fixes
712
- - duplicate removal in impacted componentTest
713
-
714
- # 0.0.1-beta.140
715
-
716
- - copy-webpack-plugin bug fix
717
-
718
- # 0.0.1-beta.139
719
-
720
- - copy-webpack-plugin downgrade
721
- - babel runtime plugin issue fix in prod config
722
- - few enhancements
723
-
724
- # 0.0.1-betaa.138.1
725
-
726
- - new feature added for custom extra attribute for dynamically added tags by webpack.
727
- - To enable this feature you need to enable "react-cli" => "app" => "customAttributes" => "enable"
728
- - For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/9eea8df14e55584b2114b5e484ca8b751a4ba191/src/plugins/CustomAttributePlugin.md)
729
-
730
- # 0.0.1-beta.138
731
-
732
- - sstest library version updated
733
- - unitcase calcluation issues fixed
734
-
735
- # 0.0.1-beta.137
736
-
737
- - Third party css files loading issue fix
738
-
739
- # 0.0.1-beta.136
740
-
741
- - eslint support
742
-
743
- # 0.0.1-beta.135
744
-
745
- - windows publish issue
746
-
747
- # 0.0.1-beta.134
748
-
749
- - Build Issue Fix
750
-
751
- # 0.0.1-beta.133
752
-
753
- - CDN Changes in I18nSplitPlugin
754
- - nonce support added for i18n chunks
755
-
756
- # 0.0.1-beta.132
757
-
758
- - CDN Changes in EFC Plugin
759
-
760
- # 0.0.1-beta.131
761
-
762
- - Added Cdn Change Plugin
763
-
764
- # 0.0.1-beta.130
765
-
766
- - Babel 7 migration, ES6 build generation config and polyfill removal
767
- - CopyPlugin issue fix
768
-
769
- #0.0.1-beta.129
770
-
771
- - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
772
-
773
- # 0.0.1-beta.128
774
-
775
- - Added support to generate hash for the third party files(TPHashMappingPlugin)
776
-
777
- # 0.0.1-beta.127
778
-
779
- - service worker plugin - to recursively add multiple directories (recursive=true)
780
-
781
- # 0.0.1-beta.126
782
-
783
- - issue fix in i18n split plugin
784
-
785
- # expremental versions
786
-
787
- - 0.0.1-beta.121
788
- - 0.0.1-beta.122
789
- - 0.0.1-beta.123
790
- - 0.0.1-beta.124
791
- - 0.0.1-beta.125
792
-
793
- # 0.0.1-beta.120
794
-
795
- - issue fix in third party file copying
796
-
797
- # expremental versions
798
-
799
- - 0.0.1-beta.119
800
- - 0.0.1-beta.118
801
-
802
- #0.0.1-beta.117
803
-
804
- - createSDkFile otion added for efc
805
- - small fix in i18n split plugin
806
-
807
- #0.0.1-beta.116
808
-
809
- - thirdparty package move to build (tpFolder in app config)
810
-
811
- #0.0.1-beta.115
812
-
813
- - Added Web worker support
814
-
815
- #0.0.1-beta.114
816
-
817
- - i18n split based on chunk
818
- - to enable i18n chunk spilt you have to add config in you package.json
819
-
820
- #0.0.1-beta.113
821
-
822
- - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
823
-
824
- #0.0.1-beta.112
825
-
826
- - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
827
- - Service worker plugin changes
828
-
829
- #0.0.1-beta.111
830
-
831
- - hasRTL, selectorReplace Condition Separated
832
-
833
- #0.0.1-beta.110
834
-
835
- - SplitChunk Order Issue Fixed
836
- - https url issue Fixed
837
-
838
- #0.0.1-beta.109
839
-
840
- - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
841
-
842
- #0.0.1-beta.108
843
-
844
- - @zohodesk/screenshottest package version update (18)
845
-
846
- #0.0.1-beta.107
847
-
848
- - changed component without docs finder added
849
-
850
- #0.0.1-beta.106
851
-
852
- - custom chunk support changes
853
- - css absolute url fix
854
-
855
- #0.0.1-beta.105
856
-
857
- - @zohodesk/screenshottest package version update (17) with the issue fix
858
-
859
- #0.0.1-beta.104
860
-
861
- - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
862
-
863
- #0.0.1-beta.103
864
-
865
- - @zohodesk/screenshottest package version update (16) with the issue fix
866
-
867
- #0.0.1-beta.102
868
-
869
- - @zohodesk/screenshottest package version update (15) with the issue fix
870
-
871
- #0.0.1-beta.101
872
-
873
- - 100 changes readme missing
874
- - bundle analyser changes
875
-
876
- #0.0.1-beta.100
877
-
878
- - @zohodesk/screenshottest package version update with the issue fix
879
- - font public path replace issue for url fonts - fixed
880
-
881
- #0.0.1-beta.99
882
-
883
- - can't publish already published
884
-
885
- #0.0.1-beta.98
886
-
887
- - defer break public path adding regex - fixed
888
-
889
- #0.0.1-beta.97
890
-
891
- - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
892
-
893
- #0.0.1-beta.96
894
-
895
- - html plugin inject option expose and version udpate 4.2.0
896
- - src html change i18n removal issue fix
897
- - script loading defer added
898
- - added babel plugin to remove proptypes
899
-
900
- #0.0.1-beta.95
901
-
902
- - schemas/index.js - issue fix
903
-
904
- #0.0.1-beta.94
905
-
906
- - screenshot test library version update
907
- - ssserver issue fix
908
-
909
- #0.0.1-beta.93
910
-
911
- - selector replacer for Help Center usecase
912
- - eslint performance plugin
913
- - css classname hash selector support for docs
914
- - service worker plugin
915
-
916
- #0.0.1-beta.92
917
-
918
- - docs ui fixes and edit mode
919
- - @zohodesk/datetimejs version update
920
-
921
- #0.0.1-beta.91
922
-
923
- - repo clone command pull issue fix
924
- - docs css change
925
- - SSTest package version downgrade
926
-
927
- #0.0.1-beta.90
928
-
929
- - added support for copying Timezone data from @zohodesk/datetimejs
930
- - docstool changes
931
-
932
- #0.0.1-beta.89
933
-
934
- - CSP nonce support for initial assets `{{--CSP-nonce}}`
935
- - introduced new mode to disable react warns in dev mode (dev-no-warn)
936
- - docs ui fix
937
-
938
- #0.0.1-beta.88
939
-
940
- - Impact run and Master seperate during SSTEST
941
- - docs changes
942
- - filenames and packages addedd in cssHashSelectors option
943
-
944
- #0.0.1-beta.87
945
-
946
- - run screenshot test for impacted components
947
- - seperate master from the CI flow with the HBase storage
948
- - docs changes
949
- - coverage percentage check disabled
950
-
951
- #0.0.1-beta.86
952
-
953
- - exclude without js changes for unittest
954
- - express server history fallback refactored
955
-
956
- #0.0.1-beta.85
957
-
958
- - i18n placeholder removal issue fixed
959
- - css classname prefix moved to option. default is zd
960
-
961
- #0.0.1-beta.84
962
-
963
- - object spread operator support
964
-
965
- #0.0.1-beta.83
966
-
967
- - eslint report type by flag
968
- - unitcase file exclude array issue fix
969
- - sstesthack issue fix
970
-
971
- #0.0.1-beta.82
972
-
973
- - eslint impact run enable - completed
974
- - devplugin cleanupstats filename import issue fix
975
- - coveragecollector return format change
976
-
977
- #0.0.1-beta.81
978
-
979
- - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
980
-
981
- #0.0.1-beta.80
982
-
983
- - unitcase filecoverage testpath issue fix
984
- - shadowdom support
985
- - postpublish and sstest hack script
986
- - dependencies impact list
987
- - can change runtime chunk's character
988
- - font preload added
989
-
990
- #0.0.1-beta.79
991
-
992
- - unitcase filecoverage added and also codecoverage with dependencies spec added
993
-
994
- #0.0.1-beta.78
995
-
996
- - components and dot library's stats added with module stats
997
- - Mini css extract plugin's unwanted logs removed
998
- - runtime chunk added in dev mode
999
- - nodemon windows issue fix
1000
- - testinfo failure missing while can't get coverage
1001
- - performance eslint plugin added and normalizer moved under zohodesk
1002
-
1003
- #0.0.1-beta.77
1004
-
1005
- - @zohodesk/eslint-plugin-zsecurity version update
1006
- - git pull origin with branch name while screenshot test after the branch switch
1007
-
1008
- #0.0.1-beta.76
1009
-
1010
- - breaking issue fix from last version ( prod config issue )
1011
-
1012
- #0.0.1-beta.75
1013
-
1014
- - sstest - reinstall dependencies after switch branch
1015
-
1016
- #0.0.1-beta.74
1017
-
1018
- - docs provider support (Component.\_provider)
1019
-
1020
- #0.0.1-beta.73
1021
-
1022
- #0.0.1-beta.72
1023
-
1024
- - run eslint security rules option enable
1025
- - add the reportURL with the result.json file
1026
- - mock server post api issue fix
1027
-
1028
- #0.0.1-beta.71
1029
-
1030
- - publicpath hard coding while flatten build issue fix
1031
-
1032
- #0.0.1-beta.70
1033
-
1034
- - css class compression flag enable
1035
- - docs src URL update
1036
-
1037
- #0.0.1-beta.69
1038
-
1039
- - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
1040
- - babel-lodash plugin fix with getdevplugin
1041
- - cursor blink issue fix for sstest
1042
- - in result.json unitcase coverage verified boolean added
1043
-
1044
- #0.0.1-beta.68
1045
-
1046
- - rtl ignore [dir] changes
1047
-
1048
- #0.0.1-beta.67
1049
-
1050
- - babel-plugin-transform-dynamic-import library added with package.json
1051
- - schema change with hostname cli option s
1052
-
1053
- #0.0.1-beta.66
1054
-
1055
- - mockport hard coded issue fix
1056
-
1057
- #0.0.1-beta.65
1058
-
1059
- - window rtl build issue fix
1060
- - separate rtl build support added like react-cli rtl ./src ./lib
1061
-
1062
- #0.0.1-beta.64
1063
-
1064
- - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
1065
-
1066
- #0.0.1-beta.63
1067
-
1068
- - LTR & RTL support added
1069
-
1070
- #0.0.1-beta.62
1071
-
1072
- - componentTest.css entry in components.html
1073
-
1074
- #0.0.1-beta.60
1075
-
1076
- - SSTMiddleware hook added for ssserver
1077
- - remove some unwanted class in components.css
1078
- - componentTest.css added with common animation break css rules
1079
-
1080
- #0.0.1-beta.59
1081
-
1082
- - vendor files exclude from app
1083
- - since the chunk hash issue, moduleIds configured as named
1084
-
1085
- #0.0.1-beta.58
1086
-
1087
- - Push result json with the report zip
1088
- - screenshot-test library Version update
1089
-
1090
- #0.0.1-beta.57
1091
-
1092
- - vendor chunk split issue fix
1093
-
1094
- #0.0.1-beta.56
1095
-
1096
- - css ordering issue fix
1097
-
1098
- #0.0.1-beta.55
1099
-
1100
- - prod build performance changes
1101
- - css duplication issue fix
1102
- - root chunk splitting logic change
1103
-
1104
- #0.0.1-beta.54
1105
-
1106
- - increased css hash size 5 to 10
1107
-
1108
- #0.0.1-beta.53
1109
-
1110
- - generate json file for all the test results during test run
1111
- - sstest version update
1112
- - some issue fixes
1113
-
1114
- #0.0.1-beta.52
1115
-
1116
- - template src folder missed issue fix because of npmignore all src folder
1117
-
1118
- #0.0.1-beta.51
1119
-
1120
- - template app updated with redux and router by kumaresan(thala)
1121
-
1122
- #0.0.1-beta.50
1123
-
1124
- - window machine css unique issue fix
1125
-
1126
- #0.0.1-beta.49
1127
-
1128
- - dev css unique issue fix
1129
-
1130
- #0.0.1-beta.48
1131
-
1132
- - telephony support css unique changes
1133
-
1134
- #0.0.1-beta.47
1135
-
1136
- - git pull during the branch switch in ssserver
1137
- - common util file for pull and switch the branches for both git and hg
1138
-
1139
- #0.0.1-beta.46
1140
-
1141
- - ogg file support and tmpl file support
1142
-
1143
- #0.0.1-beta.45
1144
-
1145
- - checkout branch with force during sstest
1146
-
1147
- #0.0.1-beta.44
1148
-
1149
- - sstest master trigger issue fix
1150
-
1151
- #0.0.1-beta.43
1152
-
1153
- - get component object from docs server by http protocol during sstest
1154
- - reach docs server by the IP address of the host.
1155
- - get the current branch name by args
1156
-
1157
- #0.0.1-beta.42
1158
-
1159
- - className ssTest added and screenshot test version update
1160
-
1161
- #0.0.1-beta.41
1162
-
1163
- - i18n replace issue fix
1164
-
1165
- - some css changes related to above
1166
- - screenshottest version update
1167
-
1168
- #0.0.1-beta.40
1169
-
1170
- - SSTMiddleware added to get hook from webpack build process to start sstest
1171
- - run unit test for commited files except the spec file name from name list
1172
- - publicpath added for i18n js files
1173
-
1174
- #0.0.1-beta.39
1175
-
1176
- - prod build check issue fix
1177
-
1178
- #0.0.1-beta.38
1179
-
1180
- - all unitcase runs only with master option removed
1181
- - prod mode in dev setup flag issue fix
1182
-
1183
- #0.0.1-beta.37
1184
-
1185
- - removed hash for index.html and add publicpath when run prod mode in dev machine
1186
- - screenshot version updated
1187
- - docs build log issue fix
1188
-
1189
- #0.0.1-beta.36
1190
-
1191
- - reportpublish sh file report generation even if any breakages in test scripts
1192
-
1193
- #0.0.1-beta.35
1194
-
1195
- - full run of spec fils only for master option added
1196
- - reportpublish sh for screenshot test report template issue fix
1197
-
1198
- #0.0.1-beta.34
1199
-
1200
- - monitor mockserver changes without affecting static server
1201
-
1202
- #0.0.1-beta.33
1203
-
1204
- - mail sent issue - fix
1205
-
1206
- #0.0.1-beta.32
1207
-
1208
- - ssl cert update
1209
- - webpack-bundle-analyzer version update (because of npm audit fix)
1210
-
1211
- #0.0.1-beta.31
1212
-
1213
- - reportpublicpath plugin rename issue fix
1214
-
1215
- #0.0.1-beta.30
1216
-
1217
- - report generate plugin rename
1218
- - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
1219
- - reportpublish sh update
1220
-
1221
- #0.0.1-beta.29
1222
-
1223
- - screenshot version updated
1224
- - unit test case commit coverage issue fix
1225
-
1226
- #0.0.1-beta.28
1227
-
1228
- - Unitcase coverage for changed files issue fix
1229
-
1230
- #0.0.1-beta.27
1231
-
1232
- - prod build size and hash tracking report added
1233
-
1234
- #0.0.1-beta.26
1235
-
1236
- - inlined assets and css assets publicpath collide issue fix
1237
-
1238
- #0.0.1-beta.25
1239
-
1240
- - inline image public path issue fix
1241
- - docs css change for sstest
1242
-
1243
- #0.0.1-beta.24
1244
-
1245
- - removed source map generation by default
1246
-
1247
- #0.0.1-beta.23
1248
-
1249
- - windows path issue in i18I18NInjectIntoIndexPlugin plugin
1250
-
1251
- #0.0.1-beta.22
1252
-
1253
- - unusedfilesplugin issue fixed and print valid info
1254
-
1255
- #0.0.1-beta.21
1256
-
1257
- - production build hash details exported in index html
1258
-
1259
- #0.0.1-beta.20
1260
-
1261
- - list the name of un documented component file name
1262
-
1263
- #0.0.1-beta.19
1264
-
1265
- - publicpath callback plugin added
1266
-
1267
- #0.0.1-beta.18
1268
-
1269
- - production build issue fix
1270
-
1271
- #0.0.1-beta.17
1272
-
1273
- - redux version downgraded
1274
-
1275
- #0.0.1-beta.16
1276
-
1277
- - Babel env and react issue fix
1278
-
1279
- #0.0.1-beta.15
1280
-
1281
- - Few issue fixes
1282
- - Webpack Manifest Plugin revamped
1283
- - @zohodesk/screenshot-test package added
1284
-
1285
- #0.0.1-beta.14
1286
-
1287
- - Removed minify option in css-loader config
1288
- - Removed optimize-css-assets-webpack-plugin
1289
- - Added UglifyCSS webpack plugin
1290
- - Packages version up to dated expect babel-loader
1291
- - Docs umd build issue fixed
1292
- - CSS public path in all configs
1293
-
1294
- #0.0.1-beta.13
1295
-
1296
- - Breaking issues fix
1297
- - Add eslint config file in project root folder
1298
- - Removed hot module and SSR concepts
1299
- - Public Path change plugin revamp
1300
- - Replaced style-loader with MiniCssExtractPlugin for overall
1301
-
1302
- #0.0.1-beta.12
1303
-
1304
- - ResourceHints Plugin added
1305
- - able to set public paths for various types of assets
1306
- - provided few cli options for existing options
1307
- - change ext of files while copy
1308
- - cache directory issue fix in dev mode
1309
- - script instrument loader added
1310
- - eslint windows machine issue fix
1311
-
1312
- #0.0.1-beta.11
1313
-
1314
- - css module extension changed to .modules.css from .mcss
1315
-
1316
- #0.0.1-beta.10
1317
-
1318
- - css module related changes
1319
- - unit test case breaking issue fix
1320
-
1321
- #0.0.1-beta.9
1322
-
1323
- - dynamic import support
1324
- - unit test case issue fix
1325
-
1326
- #0.0.1-beta.8
1327
-
1328
- - major issue fixes - previous version issues
1329
- - eslint new rules added
1330
- - reverted babel exclude option
1331
-
1332
- #0.0.1-beta.7
1333
-
1334
- - optionally attributes removal - prod mode
1335
- - pre-commit issue fixed
1336
- - eslint fix option added
1337
- - used exclude instead of include in babel loader
1338
- - option lookup issue fixed
1339
-
1340
- #0.0.1-beta.6
1341
-
1342
- - complext proptypes support for docs
1343
-
1344
- #0.0.1-beta.5
1345
-
1346
- - docs slowness issue fix
1347
- - jest update issue fix
1348
-
1349
- #0.0.1-beta.4
1350
-
1351
- - css chunk related changes
1352
- - manifest json related changes
1353
- - css bundle issue fixed
1354
-
1355
- #0.0.1-beta.3
1356
-
1357
- - slowness issue fixed
1358
- - efc build issue fixed
1359
-
1360
- 0.0.1-beta.2 changes
1361
-
1362
- - docs changes
1363
- - precommit hook issue fix
1364
- - compression support
1365
- - prod string error fix
1366
- - efc build support
1367
- - single style tag support
1368
-
1369
- ```
1370
-
1371
- ```
1
+ # React CLI
2
+
3
+ A CLI tool for build modern web application and libraries
4
+
5
+ # Installation
6
+
7
+ Below Steps:-
8
+
9
+ > `npm i -g @zohodesk/react-cli`
10
+
11
+ # Usage
12
+
13
+ ## Step 1
14
+
15
+ > `mkdir <your-project-folder> && cd mkdir <your-project-folder>`
16
+
17
+ ## Step 2
18
+
19
+ - create `package.json` file
20
+ - add this to your `package.json`
21
+
22
+ ```json
23
+ {
24
+ "scripts": {
25
+ "start": "react-cli start",
26
+ "build": "react-cli build"
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Step 3
32
+
33
+ - create below files
34
+ - `src/index.js`
35
+ - `src/index.html`
36
+
37
+ ## Step 4
38
+
39
+ Now to run app
40
+
41
+ > `npm run start`
42
+
43
+ ---
44
+
45
+ # Change Logs
46
+
47
+ # 1.1.11-exp.6 (31-8-2023)
48
+
49
+ **Features**
50
+
51
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by custom attributes enable flag.
52
+
53
+ **Changes**
54
+
55
+ - For stats plugin, added the separation of object manipulation method with converting object to string.
56
+
57
+ # 1.1.11-exp.3 (22-8-2023)
58
+
59
+ **Changes**
60
+
61
+ - Changed the default name of stats file to `build-report-integrity.json`
62
+ - Added optimization to reduce the stats file creation time. like streaming.
63
+ - Added support to exclude keys suggested
64
+
65
+ # 1.1.11-exp.2 (11-8-2023)
66
+
67
+ **Changes**
68
+
69
+ - Added more customization support for `stats.json` output.
70
+ - Disabling `bundle-analyser` stats report for our customized stats output based on a flag.
71
+
72
+ # 1.1.11-exp.1 (8-8-2023)
73
+
74
+ **Changes**
75
+
76
+ - Added a new config `stats` to control stats file generation.
77
+
78
+ **Features:-**
79
+
80
+ - Generating stats.json file for the build assets only in production mode. To use this feature we need to add `stats > enable` or cli flags `enable_stats`.
81
+
82
+ # 1.1.11 (4-8-2023)
83
+
84
+ **Changes**
85
+
86
+ - we have renamed our default config file as `react-cli.config.js` instead of `build.config.js`. But we still support `build.config.js` we will remove it in later major version.
87
+
88
+ - Prop-type, Prop description, Default Props support for docs given.
89
+ - Docs and Docs_Code UI updated.
90
+
91
+ **Features:-**
92
+
93
+ - custom classname prefix for separate packages now supported.
94
+ - to use custom classnames for specific patterns, we use the following pattern in `app > customClassNamePrefix` or `docs > customClassNamePrefix` :
95
+
96
+ ```
97
+ "customClassNamePrefix" : [
98
+ {
99
+ "enable": true,
100
+ "prefix": "[required-prefix]",
101
+ "patterns":[
102
+ "**/[path-name]/**/*.css"
103
+ ]
104
+ }
105
+ ]
106
+ ```
107
+
108
+ For example,
109
+
110
+ ```
111
+ "customClassNamePrefix": [
112
+ {
113
+ "enable": true,
114
+ "prefix": "zdSvg",
115
+ "patterns": [
116
+ "**/@zohodesk/svg/**/*.css"
117
+ ]
118
+ },
119
+ ],
120
+ ```
121
+
122
+ **Issue Fix:**
123
+
124
+ - typo fix, (../src/common/runPreProcess.js) to (../lib/common/runPreProcess.js) in cli.js our code.
125
+
126
+ # 1.1.10 (2-8-2023)
127
+
128
+ **Issue Fix:**
129
+
130
+ - undefined plugin postcss issue fixed for docs.
131
+ - unnecessary deprecation warning stopped. (for exclude config)
132
+
133
+ # 1.1.9 (25-7-2023)
134
+
135
+ **Features:-**
136
+
137
+ - we have added config file support for react-cli schema. the default config file name `build.config.js` support added. In `build.config.js` you must export configuration object under `config` key. And Note: `build.config.js` is high priority then `package.json` `react-cli` config.
138
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
139
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
140
+ - added support for pattern as function for custom chunks split logic.
141
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
142
+ - added `postCssPluginOrder` feature :
143
+
144
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "false", default plugin order will be followed.
145
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to "true", order preserved in `plugins` Object will be considered.
146
+ - If `app > postCssPluginOrder` or `docs > postCssPluginOrder` is set to an array with plugins in a custom order, the custom order will be considered.
147
+
148
+ - We use the same plugin names as in `patterns` for the plugins to execute successfully.
149
+
150
+ **Issue Fix**
151
+
152
+ - fixed file path separator issue with split chunks config for vendor exclude list for windows (that was work well for mac and ubuntu only issue in windows).
153
+ - fixed cssUniqueness pattern not working in docs.
154
+
155
+ **Changes**
156
+
157
+ - previously all custom chunks are enforce true, no we have given support for enforce false for chunks on splitChunks config.
158
+
159
+ # 1.1.8
160
+
161
+ **Issue Fix**
162
+
163
+ - Docs fix for Selector Replace 'always require argument' issue.
164
+
165
+ # 1.1.7
166
+
167
+ **Feature**
168
+
169
+ - Markdown parser feature added in docs
170
+ For more info please refer to :
171
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/MarkdownParser.md)
172
+
173
+ # 1.1.6-exp.2
174
+
175
+ - fixed file path separator issue with split chunks config for vendor exclude list.
176
+ - added support for not doing enforce true for chunks on splitChunks config.
177
+
178
+ # 1.1.5-exp.5
179
+
180
+ - fixed the issues regarding custom chunks base config schema.
181
+
182
+ # 1.1.5-exp.4
183
+
184
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
185
+
186
+ # 1.1.5-exp.3
187
+
188
+ - added options to split chunks base config
189
+ - added support for passing custom chunks split logic as function.
190
+
191
+ # 1.1.6
192
+
193
+ **Issue Fix**
194
+
195
+ - local install react-cli spawnSync Error fix in npm 8
196
+ - babel version update issue fix (Cannot read properties of undefined (reading 'file')) and (BABEL_TRANSFORM_ERROR)
197
+
198
+ # 1.1.5-exp.2
199
+
200
+ **Issue Fix**
201
+
202
+ - local install react-cli spawnSync Error fix in npm 8
203
+
204
+ # 1.1.5
205
+
206
+ **Issue Fix**
207
+
208
+ - include pattern fix for variable converter plugin fixed
209
+
210
+ # 1.1.4
211
+
212
+ **Issue Fix**
213
+
214
+ - global install react-cli spawnSync Error fix
215
+ - `0px` variable value conversion issue fixed
216
+ - pattern exclude for postcss plugins case fixed
217
+
218
+ # 1.1.3
219
+
220
+ **Issue Fix**
221
+
222
+ - local install react-cli spawnSync Error fix
223
+
224
+ # 1.1.2
225
+
226
+ **Issue Fix**
227
+
228
+ - ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
229
+
230
+ # 1.1.1
231
+
232
+ **Issue Fix**
233
+
234
+ - docs component name incorrect in windows, when using --enableReactLive issue fixed.
235
+
236
+ **Feature Update**
237
+
238
+ - Support for desk-library to use Selector Replace plugin using individual script. To use `react-cli selectorReplacer [source] [target]`
239
+
240
+ # 1.1.0
241
+
242
+ **Feature Update**
243
+
244
+ - Support for desk-library to use variable conversion plugin using individual script. To use `react-cli variableConverter [source] [target]`
245
+ - pattern filter changes, new filter system instead of exclude to include or exclude files for plugins.
246
+ For more info please refer to :
247
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/patternFiltering.md)
248
+ - React Live feature implemented for Docs.
249
+ [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ReactLive.md)
250
+
251
+ # 1.0.3-beta.1
252
+
253
+ **Issue Fix**
254
+
255
+ - nock api not working issue fixed. This error throwing in @zohodesk/react-cli@1.0.2 version. but working in older versions ( 0.0.1-beta.178 )
256
+
257
+ # 1.0.3
258
+
259
+ **Feature Update**
260
+
261
+ - Support for global httpsCerts usage
262
+ - Support for global client_packages_group usage
263
+ - custom attribute for dynamically loading chunks, In this version we merged changes from [0.0.1-beta.167.1](#0.0.1-beta.167.1).
264
+ **Package Update**
265
+ - @zohodesk/client_packages_group@**1.0.1** ==> @zohodesk/client_packages_group@**1.0.2**
266
+
267
+ # 1.0.2
268
+
269
+ **Feature Update**
270
+
271
+ - Selector replace plugin made as a custom postcss-plugin with update to code that was unpublished in package.
272
+
273
+ # 1.0.1
274
+
275
+ **Issue Fix**
276
+
277
+ - variable conversion for px and var(--) values in same declaration was not supported, now it is supported.
278
+ - package-lock.json removed from `.npmignore`
279
+
280
+ **Feature Update**
281
+
282
+ - exclude added to Selector Plugin
283
+
284
+ # 1.0.0
285
+
286
+ ## Major Release
287
+
288
+ **Changes:**
289
+
290
+ - File support added for `.webp` for `docs`, `dev` and `prod` mode
291
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
292
+
293
+ **Breaking Changes:**
294
+
295
+ - We have remove ssl certificate for security reasons.
296
+ So default https server won't run.
297
+ In order to make it work as before you need to specify two things
298
+ 1. install `@zohodesk-private/client_dev_cert`
299
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
300
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`. and mock wms `/wmsmockapi` won't work.
301
+ So Please be carefull when you update this version or above without proper configaration.
302
+
303
+ # 0.0.1-beta.178
304
+
305
+ **Changes:**
306
+
307
+ - File support added for `.webp` for `docs`, `dev` and `prod` mode
308
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
309
+
310
+ **Breaking Changes:**
311
+
312
+ - We have remove ssl certificate for security reasons.
313
+ So default https server won't run.
314
+ In order to make it work as before you need to specify two things
315
+ 1. install `@zohodesk-private/client_dev_cert`
316
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
317
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
318
+ So Please be carefull when you update this version or above without proper configaration.
319
+
320
+ # 0.0.1-exp.178.2
321
+
322
+ **Changes:**
323
+
324
+ - File support added for `.webm` for `docs`, `dev` and `prod` mode
325
+
326
+ # 0.0.1-exp.178.1
327
+
328
+ **Breaking Changes:**
329
+
330
+ - We have remove ssl certificate for security reasons.
331
+ So default https server won't run.
332
+ In order to make it work as before you need to specify two things
333
+ 1. install `@zohodesk-private/client_dev_cert`
334
+ 2. `react-cli.app.server.httpsCerts` option example `"httpsCerts": "@zohodesk-private/client_dev_cert"`
335
+ unless configaration are proper this may break `start` , `docs` , `nowatchstart`.
336
+ So Please be carefull when you update this version or above without proper configaration.
337
+
338
+ # 0.0.1-beta.177
339
+
340
+ **Changes:**
341
+
342
+ - We have added extra new Error option `MULTIPLE_OCCURANCES` support for **convert px to custom variables**.
343
+ - In case css --variables are not assigned an error will be thrown and logged in `.cli/logs/unassignedVariables.log`. The unassigned variables can be manually assigned in `variableMapping.json` through two keys :
344
+ - `changes` : for the variables that have to be converted, manual values can be added ( eg. "--wms_height": "height" )
345
+ - `ignore` : for the variables that do not have to be considered, they can be added as keys with some value in `ignore` key (eg. "--gc_widget_video_bg": "undefined"). These values will be ignored.
346
+ - strict mode can be enabled for checking --variables in `cssVariableReplacementOptions.strictMode`
347
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
348
+
349
+ - and this version has same as `0.0.1-exp.176.12`, `0.0.1-exp.176.11`
350
+
351
+ # 0.0.1-exp.176.12
352
+
353
+ **Changes:**
354
+
355
+ - Earlier versions of react-cli, we have been putting video files under images folder in build output, now, we have moved the video files under videos folder in build output.
356
+
357
+ # 0.0.1-exp.176.11
358
+
359
+ **Issue Fix:**
360
+
361
+ - When we use `react-cli.app.publicPaths.callback` this option and video files import, in place of publicPath url, **null** was there instead of file type `video` issue fixed.
362
+
363
+ # 0.0.1-beta.176
364
+
365
+ **Features:**
366
+
367
+ - we have added feature to **increase Selector weight** for all css classes in your project during build time.
368
+ To enable this feature you have to set `react-cli.app.plugins.selectorWeight` as `true` in **package.json**.
369
+ For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/SelectorWeight.md)
370
+ - Updates to variable replacement are given :
371
+ - css variables with -- are now supported due to the webpack plugin `VariableConversionCollector` that is generated for the same.
372
+ - `DECIMAL_CHECK`, `DECIMAL_REJECT` are two new errors supported.
373
+ - support for text-indent, clip, flex, flex-basis, row-gap, column-gap, gap properties are now given.
374
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
375
+
376
+ # 0.0.1-beta.175
377
+
378
+ **Issue Fix:-**
379
+
380
+ - When we use "hoverActive" @import in css not working issue fixed
381
+
382
+ **Features:**
383
+
384
+ - `minifiy` option supported for minimize index.html file in during build time. You can use this option as "react-cli.app.htmlTemplate.minify" the options are same as https://github.com/jantimon/html-webpack-plugin#minification
385
+
386
+ # 0.0.1-beta.174
387
+
388
+ cli has been updated to fix compose issue faced when classname:hover exists and classname does not before compose
389
+
390
+ **Issue Fix:-**
391
+
392
+ - In react-cli version `0.0.1-beta.173`, when we use `start` command throws error issue fixed
393
+ - while using `cssVariableReplacementOptions`, compose issue faced in css files, when classname:hover exists and classname does not exist issue fixed
394
+
395
+ **Feature:-**
396
+
397
+ - `react-cli.test.classnameFormat` option added to change CssModules (Ex: import style from "./a.module.css" ) className transform template unittest case.
398
+ `classnameFormat` default value `[classname]` you can customize it. Example: `[classname]-[hash]`
399
+
400
+ **Changes:-**
401
+
402
+ - `jsonFile_test_*.json` files deleted after they used.
403
+
404
+ # 0.0.1-beta.173
405
+
406
+ **Features:**
407
+
408
+ - we have added feature to **convert px to custom variables** for all css files in your project during build time.
409
+ To enable this feature you have to set `react-cli.app.plugins.cssVariableReplacement` as `true` in **package.json**.
410
+
411
+ Conversion for css Variables from Variables to px in Supportapp completed (`variableIgnore.js` && `pxParserPostcss.js` to be referred to), and px to custom variables through the new `variableModificationPlugin`. Error Log generation can also be converted on enabling
412
+
413
+ For an more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
414
+
415
+ # 0.0.1-beta.172
416
+
417
+ We have renamed some options, For Our future features convenience.
418
+ We have given fallback support.
419
+ Deprecation Warnings:-
420
+
421
+ - `react-cli.app.hasRTL` ==> `react-cli.app.plugins.hasRTL`
422
+ - `react-cli.app.rtlExclude` ==> `react-cli.app.exclude.rtl`
423
+
424
+ - `react-cli.docs.hasRTL` ==> `react-cli.docs.plugins.hasRTL`
425
+ - `react-cli.docs.rtlExclude` ==> `react-cli.docs.exclude.rtl`
426
+ these options have fallback support.
427
+
428
+ # 0.0.1-beta.171
429
+
430
+ Features added :
431
+
432
+ 1. `react-cli.app.mediaQueryHoverActiveString` and `react-cli.docs.mediaQueryHoverActiveString` templates support added for @media(hover: hover) and @media(hover: none) queries. We can modify these to modify respective queries.
433
+
434
+ # 0.0.1-beta.170
435
+
436
+ this version has same as `0.0.1-exp.169.1`, `0.0.1-exp.169.2`
437
+
438
+ # 0.0.1-exp.169.2
439
+
440
+ 1. flags are converted to one variable 'plugin' and used in getCssLoaders.js.
441
+ 2. files for exclusion can be put in seperate arrays in 'exclude' present in package.json.
442
+ 3. `combinerMq` has been converted to `combinerMediaQuery` for clarity.
443
+
444
+ # 0.0.1-exp.169.1
445
+
446
+ File support added for mp4 for docs dev and prod mode
447
+
448
+ # 0.0.1-beta.169
449
+
450
+ this version has same as `0.0.1-exp.168.1`, `0.0.1-exp.168.2`, `0.0.1-exp.168.3` and below and some minor changes
451
+
452
+ 1. `--efc_version=v3` flag added for change efc version via commmand line option
453
+ 2. `hoverActive` flag added for conversion from usual hover to @media(hover:hover) and @media(hover:none) queries for hover support in mobile.
454
+ 3. `combinerMq` flag added for combination of the media queries that might be appended or existing media queries that are duplicates to create one media query with all rules put together.
455
+
456
+ # 0.0.1-exp.168.3
457
+
458
+ Changes :
459
+
460
+ 1. code optimization ( made functions for the hoverActive cases making it more easier to access)
461
+ 2. handled `hover:ignore`, `active:ignore`, `hoverActive:ignore` cases for usual queries and media queries
462
+
463
+ # 0.0.1-exp.168.2
464
+
465
+ Changes :
466
+
467
+ 1. hoverActive case handled with postcss `hover:hover` media query and `hover:none` media query is added
468
+ 2. flag for hoverActive used to add/remove postcss changes
469
+
470
+ # 0.0.1-exp.168.1
471
+
472
+ Changes:-
473
+
474
+ 1. `cliRootPath` option removed `react-cli.app.cliRootPath` in `package.json`
475
+ Due to the reason we updated our logic to find package's executable path.
476
+ 2. `--efc_output_file=efc-sdk-[version].js` option added to modify efc output file by terminal
477
+ 3. added logic to print error message during command run, Previously when executable not found error messages not printed
478
+
479
+ # 0.0.1-beta.168
480
+
481
+ Changes:-
482
+
483
+ 1. `enableChunkHash` option enabled for dev mode, use it as `react-cli.app.enableChunkHash` in `package.json`
484
+ 2. `--enable_efc=true` option added to enable efc by terminal
485
+ 3. unwanted pem files removed
486
+
487
+ # 0.0.1-exp.167.1
488
+
489
+ Features:-
490
+
491
+ - In docs we have added `Description` for Component Props- check out it in `PropTypes` tab
492
+
493
+ # 0.0.1-beta.167.1
494
+
495
+ In this version we merged changes from [0.0.1-betaa.138.1](#0.0.1-betaa.138.1).
496
+ and with [0.0.1-beta.167](#0.0.1-beta.167) version changes.
497
+
498
+ # 0.0.1-beta.167
499
+
500
+ SSL certificate update
501
+ this version has same as `0.0.1-exp.166.1`, `0.0.1-exp.166.2` and below and some minor changes
502
+ Features:-
503
+
504
+ - `--shallow_clone` option to `react-cli clone` this option will be usefull for shallow cloning repos in build time we don't need commit messages it will be 2x fast this way
505
+ - Example `react-cli clone --clone_type=git --clone_url=https://some.url --shallow_clone`
506
+ - `cliRootPath` option added for npm workspace related path problems
507
+ - Usage `package.json` , "react-cli" => "cliRootPath" stright key
508
+ - `unstableDepsInverse` option added for use app need library first priority over react-cli packages
509
+ - Usage `package.json` , "react-cli" => "unstableDepsInverse" stright key
510
+
511
+ Issue Fix :-
512
+
513
+ - In devmode initial html not recived after second rebuild issue fix.
514
+ - typo fix `devBulid` to `devBuild`.
515
+ - `disableES5Transpile` option missed in docs now added.
516
+ - docs libAlias not work as app for example in app we always take `es` folder to build for treshaking and reasons,
517
+ But that option not enabled in docs. now it is enabled.
518
+ - In `react-cli devbuild` command options not working properly,
519
+ when above command run via terminal not via npm run script options not working
520
+ So we send that options to webpack then it works as expected.
521
+ this behaviour need to check across os and need to be cross check with other commends as well for now we only fixed this
522
+
523
+ # 0.0.1-exp.166.2
524
+
525
+ Changes:-
526
+
527
+ - `-w` option (watch option) added for `react-cli rtl`
528
+ - Example `react-cli rtl ./src ./lib -w`
529
+ <!-- need to handle `react-cli rtl` options correctly -->
530
+ - disableES5Transpile option libAlias added for docs
531
+
532
+ # 0.0.1-exp.166.1
533
+
534
+ Changes:-
535
+
536
+ - `__testUtils__/globals.js` to jest is not mantatory
537
+ - disableES5Transpile option libAlias added
538
+
539
+ # 0.0.1-beta.166
540
+
541
+ this version has same as `# 0.0.1-exp.164.1`, `# 0.0.1-exp.164.2` and below and some minor changes
542
+
543
+ - google chorme cors preflight issue fix
544
+
545
+ # 0.0.1-beta.165
546
+
547
+ - `valueReplacer` option added in shemas for font name replace related issue handling, for more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/ValueReplacer.md)
548
+ - `valuereplacer` option added in react-cli it takes three
549
+ 1. sourceDir
550
+ 2. distDir
551
+ 3. `copyAll` is boolean flag which is for copy all other file or not. "true" means copy all files.
552
+
553
+ # 0.0.1-exp.164.1
554
+
555
+ - extra features in custom chunks reffer [this](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/CustomChunks.md)
556
+
557
+ # 0.0.1-exp.164.2
558
+
559
+ - `devbuild` option add to react cli
560
+
561
+ # 0.0.1-beta.164
562
+
563
+ - typo fix
564
+
565
+ # 0.0.1-beta.163
566
+
567
+ - **Issue Fix:-**
568
+
569
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
570
+ - jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
571
+
572
+ - **Features :-**
573
+ - feature added for pre process logic
574
+ - tailer made requirement for preprocess, just write node js file
575
+ - mention file in `"react-cli" => "preprocess" => "runner"`
576
+ - option parse logic added for react-cli (exprimental)
577
+ - `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
578
+
579
+ # 0.0.1-exp.162.2
580
+
581
+ - **Optimazation:-**
582
+ - double time minimize optimazation
583
+
584
+ # 0.0.1-beta.162.1
585
+
586
+ - **Issue Fix:-**
587
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
588
+
589
+ # 0.0.1-beta.161.1
590
+
591
+ - **Features :-**
592
+ - feature added for pre process logic
593
+ - tailer made requirement for preprocess, just write node js file
594
+ - mention file in `"react-cli" => "preprocess" => "runner"`
595
+ - option parse logic added for react-cli (exprimental)
596
+
597
+ # 0.0.1-beta.162
598
+
599
+ - @zohodesk/datetimejs package updated to beta.8
600
+
601
+ # 0.0.1-beta.161
602
+
603
+ - **Features :-**
604
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
605
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
606
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
607
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
608
+ - `assetsType` are `js`, `css`, `i18n`
609
+ - `lang` this argument only works when `i18n` is `assetsType`
610
+ - feature added for efc `cdnStatement`
611
+ - **Issue fixes:-**
612
+ - css classname hash change issue fix
613
+ - debug package conflit issue fix in nock in (react-cli test)
614
+ - manifest.json css file name correction issue for rtl and ltr
615
+
616
+ # 0.0.1-exp.161.2
617
+
618
+ - Features
619
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
620
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
621
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
622
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
623
+ - `assetsType` are `js`, `css`, `i18n`
624
+ - `lang` this argument only works when `i18n` is `assetsType`
625
+
626
+ # 0.0.1-exp.161.1
627
+
628
+ - Features
629
+ - feature added for efc `cdnStatement`
630
+ - Issue fixes:-
631
+ - css classname hash change issue fix
632
+ - debug package conflit issue fix in nock in (react-cli test)
633
+ - manifest.json css file name correction issue for rtl and ltr
634
+
635
+ # 0.0.1-beta.160
636
+
637
+ - @zohodesk/normalizer package version updated to 1.0.2
638
+
639
+ # 0.0.1-beta.159
640
+
641
+ - @zohodesk/datetimejs package updated to beta.7
642
+
643
+ # 0.0.1-exp.159
644
+
645
+ - issue fix:-
646
+ - when rtl ltr css split enable manifest json css filename keys comes with hash .
647
+
648
+ # 0.0.1-beta.158
649
+
650
+ - Removing source map files from service worker caching.
651
+
652
+ # 0.0.1-beta.157
653
+
654
+ - Experimental version issue fix(Dummy version removed)
655
+
656
+ # 0.0.1-beta.156
657
+
658
+ - ReportPublish issue fix
659
+
660
+ # 0.0.1-beta.155
661
+
662
+ - get impacted library source files option added
663
+
664
+ # 0.0.1-beta.154
665
+
666
+ - mockPrefix option for mock url prefix change
667
+ - Issue fix:-
668
+ - un wanted {{--js-smap}} in inital html without enable smap in build
669
+
670
+ # 0.0.1-beta.153
671
+
672
+ - Vendor include array added
673
+ - If you need to include any thrid party js in vendor we can use this array
674
+
675
+ # 0.0.1-beta.152
676
+
677
+ impact servise related changes:-
678
+
679
+ - 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)
680
+ - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
681
+ only work in two ways
682
+ 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
683
+ 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
684
+ #### Urls are:-
685
+ Below express path are added, For download zip files and
686
+ - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
687
+ - `/zips/build.zip` build zip file (contains bundled all files)
688
+
689
+ # 0.0.1-beta.151
690
+
691
+ - issue fix:- Docs config 'html-loader' options updated.
692
+ - sslcertUpdate feature added
693
+ - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
694
+ - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
695
+
696
+ # 0.0.1-beta.150
697
+
698
+ - issue Fix:- in npm 7 option not working issue fixed
699
+ - ssl certificate update
700
+
701
+ # 0.0.1-beta.149
702
+
703
+ - css, ltr and rtl chunk split based on [dir=ltr]
704
+ - to enable ltr and rtl chunk spilt you have to add config in you package.json
705
+ <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
706
+ - we have added some options in EFCPlugin for rtlsplit related features.
707
+ - we have expoed require function for only css impact related changes with flag
708
+
709
+ # 0.0.1-beta.148
710
+
711
+ - source map enabled in prod mode for debug client
712
+ - crossorigin attribute added for scripts
713
+
714
+ # 0.0.1-beta.147
715
+
716
+ - reportpublish issue fix
717
+
718
+ # 0.0.1-beta.146
719
+
720
+ - while docs run LibraryImactPlugin not constructor issue fix
721
+ - css loader added for css impact related changes
722
+
723
+ # 0.0.1 -beta.145
724
+
725
+ - LibraryImpactPlugin added
726
+ - check impacted source components name if any version update happened with master
727
+
728
+ # 0.0.1-beta.144
729
+
730
+ - prod build bug fix
731
+
732
+ # 0.0.1-beta.143
733
+
734
+ - `babel-plugin-transform-remove-console` added for remove console properties except error and log
735
+ - `console_exculde` script added if suppose enable same in dev mode
736
+ - service worker plugin changes
737
+ - library impact changes
738
+
739
+ # 0.0.1-beta.142
740
+
741
+ - `eslint-plugin-react-hooks` added to eslint support.
742
+ - Updated exact versions to eslint plugins installation script.
743
+
744
+ # 0.0.1-beta.141
745
+
746
+ - report publish sh fixes
747
+ - duplicate removal in impacted componentTest
748
+
749
+ # 0.0.1-beta.140
750
+
751
+ - copy-webpack-plugin bug fix
752
+
753
+ # 0.0.1-beta.139
754
+
755
+ - copy-webpack-plugin downgrade
756
+ - babel runtime plugin issue fix in prod config
757
+ - few enhancements
758
+
759
+ # 0.0.1-betaa.138.1
760
+
761
+ - new feature added for custom extra attribute for dynamically added tags by webpack.
762
+ - To enable this feature you need to enable "react-cli" => "app" => "customAttributes" => "enable"
763
+ - For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/9eea8df14e55584b2114b5e484ca8b751a4ba191/src/plugins/CustomAttributePlugin.md)
764
+
765
+ # 0.0.1-beta.138
766
+
767
+ - sstest library version updated
768
+ - unitcase calcluation issues fixed
769
+
770
+ # 0.0.1-beta.137
771
+
772
+ - Third party css files loading issue fix
773
+
774
+ # 0.0.1-beta.136
775
+
776
+ - eslint support
777
+
778
+ # 0.0.1-beta.135
779
+
780
+ - windows publish issue
781
+
782
+ # 0.0.1-beta.134
783
+
784
+ - Build Issue Fix
785
+
786
+ # 0.0.1-beta.133
787
+
788
+ - CDN Changes in I18nSplitPlugin
789
+ - nonce support added for i18n chunks
790
+
791
+ # 0.0.1-beta.132
792
+
793
+ - CDN Changes in EFC Plugin
794
+
795
+ # 0.0.1-beta.131
796
+
797
+ - Added Cdn Change Plugin
798
+
799
+ # 0.0.1-beta.130
800
+
801
+ - Babel 7 migration, ES6 build generation config and polyfill removal
802
+ - CopyPlugin issue fix
803
+
804
+ #0.0.1-beta.129
805
+
806
+ - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
807
+
808
+ # 0.0.1-beta.128
809
+
810
+ - Added support to generate hash for the third party files(TPHashMappingPlugin)
811
+
812
+ # 0.0.1-beta.127
813
+
814
+ - service worker plugin - to recursively add multiple directories (recursive=true)
815
+
816
+ # 0.0.1-beta.126
817
+
818
+ - issue fix in i18n split plugin
819
+
820
+ # expremental versions
821
+
822
+ - 0.0.1-beta.121
823
+ - 0.0.1-beta.122
824
+ - 0.0.1-beta.123
825
+ - 0.0.1-beta.124
826
+ - 0.0.1-beta.125
827
+
828
+ # 0.0.1-beta.120
829
+
830
+ - issue fix in third party file copying
831
+
832
+ # expremental versions
833
+
834
+ - 0.0.1-beta.119
835
+ - 0.0.1-beta.118
836
+
837
+ #0.0.1-beta.117
838
+
839
+ - createSDkFile otion added for efc
840
+ - small fix in i18n split plugin
841
+
842
+ #0.0.1-beta.116
843
+
844
+ - thirdparty package move to build (tpFolder in app config)
845
+
846
+ #0.0.1-beta.115
847
+
848
+ - Added Web worker support
849
+
850
+ #0.0.1-beta.114
851
+
852
+ - i18n split based on chunk
853
+ - to enable i18n chunk spilt you have to add config in you package.json
854
+
855
+ #0.0.1-beta.113
856
+
857
+ - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
858
+
859
+ #0.0.1-beta.112
860
+
861
+ - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
862
+ - Service worker plugin changes
863
+
864
+ #0.0.1-beta.111
865
+
866
+ - hasRTL, selectorReplace Condition Separated
867
+
868
+ #0.0.1-beta.110
869
+
870
+ - SplitChunk Order Issue Fixed
871
+ - https url issue Fixed
872
+
873
+ #0.0.1-beta.109
874
+
875
+ - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
876
+
877
+ #0.0.1-beta.108
878
+
879
+ - @zohodesk/screenshottest package version update (18)
880
+
881
+ #0.0.1-beta.107
882
+
883
+ - changed component without docs finder added
884
+
885
+ #0.0.1-beta.106
886
+
887
+ - custom chunk support changes
888
+ - css absolute url fix
889
+
890
+ #0.0.1-beta.105
891
+
892
+ - @zohodesk/screenshottest package version update (17) with the issue fix
893
+
894
+ #0.0.1-beta.104
895
+
896
+ - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
897
+
898
+ #0.0.1-beta.103
899
+
900
+ - @zohodesk/screenshottest package version update (16) with the issue fix
901
+
902
+ #0.0.1-beta.102
903
+
904
+ - @zohodesk/screenshottest package version update (15) with the issue fix
905
+
906
+ #0.0.1-beta.101
907
+
908
+ - 100 changes readme missing
909
+ - bundle analyser changes
910
+
911
+ #0.0.1-beta.100
912
+
913
+ - @zohodesk/screenshottest package version update with the issue fix
914
+ - font public path replace issue for url fonts - fixed
915
+
916
+ #0.0.1-beta.99
917
+
918
+ - can't publish already published
919
+
920
+ #0.0.1-beta.98
921
+
922
+ - defer break public path adding regex - fixed
923
+
924
+ #0.0.1-beta.97
925
+
926
+ - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
927
+
928
+ #0.0.1-beta.96
929
+
930
+ - html plugin inject option expose and version udpate 4.2.0
931
+ - src html change i18n removal issue fix
932
+ - script loading defer added
933
+ - added babel plugin to remove proptypes
934
+
935
+ #0.0.1-beta.95
936
+
937
+ - schemas/index.js - issue fix
938
+
939
+ #0.0.1-beta.94
940
+
941
+ - screenshot test library version update
942
+ - ssserver issue fix
943
+
944
+ #0.0.1-beta.93
945
+
946
+ - selector replacer for Help Center usecase
947
+ - eslint performance plugin
948
+ - css classname hash selector support for docs
949
+ - service worker plugin
950
+
951
+ #0.0.1-beta.92
952
+
953
+ - docs ui fixes and edit mode
954
+ - @zohodesk/datetimejs version update
955
+
956
+ #0.0.1-beta.91
957
+
958
+ - repo clone command pull issue fix
959
+ - docs css change
960
+ - SSTest package version downgrade
961
+
962
+ #0.0.1-beta.90
963
+
964
+ - added support for copying Timezone data from @zohodesk/datetimejs
965
+ - docstool changes
966
+
967
+ #0.0.1-beta.89
968
+
969
+ - CSP nonce support for initial assets `{{--CSP-nonce}}`
970
+ - introduced new mode to disable react warns in dev mode (dev-no-warn)
971
+ - docs ui fix
972
+
973
+ #0.0.1-beta.88
974
+
975
+ - Impact run and Master seperate during SSTEST
976
+ - docs changes
977
+ - filenames and packages addedd in cssHashSelectors option
978
+
979
+ #0.0.1-beta.87
980
+
981
+ - run screenshot test for impacted components
982
+ - seperate master from the CI flow with the HBase storage
983
+ - docs changes
984
+ - coverage percentage check disabled
985
+
986
+ #0.0.1-beta.86
987
+
988
+ - exclude without js changes for unittest
989
+ - express server history fallback refactored
990
+
991
+ #0.0.1-beta.85
992
+
993
+ - i18n placeholder removal issue fixed
994
+ - css classname prefix moved to option. default is zd
995
+
996
+ #0.0.1-beta.84
997
+
998
+ - object spread operator support
999
+
1000
+ #0.0.1-beta.83
1001
+
1002
+ - eslint report type by flag
1003
+ - unitcase file exclude array issue fix
1004
+ - sstesthack issue fix
1005
+
1006
+ #0.0.1-beta.82
1007
+
1008
+ - eslint impact run enable - completed
1009
+ - devplugin cleanupstats filename import issue fix
1010
+ - coveragecollector return format change
1011
+
1012
+ #0.0.1-beta.81
1013
+
1014
+ - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
1015
+
1016
+ #0.0.1-beta.80
1017
+
1018
+ - unitcase filecoverage testpath issue fix
1019
+ - shadowdom support
1020
+ - postpublish and sstest hack script
1021
+ - dependencies impact list
1022
+ - can change runtime chunk's character
1023
+ - font preload added
1024
+
1025
+ #0.0.1-beta.79
1026
+
1027
+ - unitcase filecoverage added and also codecoverage with dependencies spec added
1028
+
1029
+ #0.0.1-beta.78
1030
+
1031
+ - components and dot library's stats added with module stats
1032
+ - Mini css extract plugin's unwanted logs removed
1033
+ - runtime chunk added in dev mode
1034
+ - nodemon windows issue fix
1035
+ - testinfo failure missing while can't get coverage
1036
+ - performance eslint plugin added and normalizer moved under zohodesk
1037
+
1038
+ #0.0.1-beta.77
1039
+
1040
+ - @zohodesk/eslint-plugin-zsecurity version update
1041
+ - git pull origin with branch name while screenshot test after the branch switch
1042
+
1043
+ #0.0.1-beta.76
1044
+
1045
+ - breaking issue fix from last version ( prod config issue )
1046
+
1047
+ #0.0.1-beta.75
1048
+
1049
+ - sstest - reinstall dependencies after switch branch
1050
+
1051
+ #0.0.1-beta.74
1052
+
1053
+ - docs provider support (Component.\_provider)
1054
+
1055
+ #0.0.1-beta.73
1056
+
1057
+ #0.0.1-beta.72
1058
+
1059
+ - run eslint security rules option enable
1060
+ - add the reportURL with the result.json file
1061
+ - mock server post api issue fix
1062
+
1063
+ #0.0.1-beta.71
1064
+
1065
+ - publicpath hard coding while flatten build issue fix
1066
+
1067
+ #0.0.1-beta.70
1068
+
1069
+ - css class compression flag enable
1070
+ - docs src URL update
1071
+
1072
+ #0.0.1-beta.69
1073
+
1074
+ - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
1075
+ - babel-lodash plugin fix with getdevplugin
1076
+ - cursor blink issue fix for sstest
1077
+ - in result.json unitcase coverage verified boolean added
1078
+
1079
+ #0.0.1-beta.68
1080
+
1081
+ - rtl ignore [dir] changes
1082
+
1083
+ #0.0.1-beta.67
1084
+
1085
+ - babel-plugin-transform-dynamic-import library added with package.json
1086
+ - schema change with hostname cli option s
1087
+
1088
+ #0.0.1-beta.66
1089
+
1090
+ - mockport hard coded issue fix
1091
+
1092
+ #0.0.1-beta.65
1093
+
1094
+ - window rtl build issue fix
1095
+ - separate rtl build support added like react-cli rtl ./src ./lib
1096
+
1097
+ #0.0.1-beta.64
1098
+
1099
+ - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
1100
+
1101
+ #0.0.1-beta.63
1102
+
1103
+ - LTR & RTL support added
1104
+
1105
+ #0.0.1-beta.62
1106
+
1107
+ - componentTest.css entry in components.html
1108
+
1109
+ #0.0.1-beta.60
1110
+
1111
+ - SSTMiddleware hook added for ssserver
1112
+ - remove some unwanted class in components.css
1113
+ - componentTest.css added with common animation break css rules
1114
+
1115
+ #0.0.1-beta.59
1116
+
1117
+ - vendor files exclude from app
1118
+ - since the chunk hash issue, moduleIds configured as named
1119
+
1120
+ #0.0.1-beta.58
1121
+
1122
+ - Push result json with the report zip
1123
+ - screenshot-test library Version update
1124
+
1125
+ #0.0.1-beta.57
1126
+
1127
+ - vendor chunk split issue fix
1128
+
1129
+ #0.0.1-beta.56
1130
+
1131
+ - css ordering issue fix
1132
+
1133
+ #0.0.1-beta.55
1134
+
1135
+ - prod build performance changes
1136
+ - css duplication issue fix
1137
+ - root chunk splitting logic change
1138
+
1139
+ #0.0.1-beta.54
1140
+
1141
+ - increased css hash size 5 to 10
1142
+
1143
+ #0.0.1-beta.53
1144
+
1145
+ - generate json file for all the test results during test run
1146
+ - sstest version update
1147
+ - some issue fixes
1148
+
1149
+ #0.0.1-beta.52
1150
+
1151
+ - template src folder missed issue fix because of npmignore all src folder
1152
+
1153
+ #0.0.1-beta.51
1154
+
1155
+ - template app updated with redux and router by kumaresan(thala)
1156
+
1157
+ #0.0.1-beta.50
1158
+
1159
+ - window machine css unique issue fix
1160
+
1161
+ #0.0.1-beta.49
1162
+
1163
+ - dev css unique issue fix
1164
+
1165
+ #0.0.1-beta.48
1166
+
1167
+ - telephony support css unique changes
1168
+
1169
+ #0.0.1-beta.47
1170
+
1171
+ - git pull during the branch switch in ssserver
1172
+ - common util file for pull and switch the branches for both git and hg
1173
+
1174
+ #0.0.1-beta.46
1175
+
1176
+ - ogg file support and tmpl file support
1177
+
1178
+ #0.0.1-beta.45
1179
+
1180
+ - checkout branch with force during sstest
1181
+
1182
+ #0.0.1-beta.44
1183
+
1184
+ - sstest master trigger issue fix
1185
+
1186
+ #0.0.1-beta.43
1187
+
1188
+ - get component object from docs server by http protocol during sstest
1189
+ - reach docs server by the IP address of the host.
1190
+ - get the current branch name by args
1191
+
1192
+ #0.0.1-beta.42
1193
+
1194
+ - className ssTest added and screenshot test version update
1195
+
1196
+ #0.0.1-beta.41
1197
+
1198
+ - i18n replace issue fix
1199
+
1200
+ - some css changes related to above
1201
+ - screenshottest version update
1202
+
1203
+ #0.0.1-beta.40
1204
+
1205
+ - SSTMiddleware added to get hook from webpack build process to start sstest
1206
+ - run unit test for commited files except the spec file name from name list
1207
+ - publicpath added for i18n js files
1208
+
1209
+ #0.0.1-beta.39
1210
+
1211
+ - prod build check issue fix
1212
+
1213
+ #0.0.1-beta.38
1214
+
1215
+ - all unitcase runs only with master option removed
1216
+ - prod mode in dev setup flag issue fix
1217
+
1218
+ #0.0.1-beta.37
1219
+
1220
+ - removed hash for index.html and add publicpath when run prod mode in dev machine
1221
+ - screenshot version updated
1222
+ - docs build log issue fix
1223
+
1224
+ #0.0.1-beta.36
1225
+
1226
+ - reportpublish sh file report generation even if any breakages in test scripts
1227
+
1228
+ #0.0.1-beta.35
1229
+
1230
+ - full run of spec fils only for master option added
1231
+ - reportpublish sh for screenshot test report template issue fix
1232
+
1233
+ #0.0.1-beta.34
1234
+
1235
+ - monitor mockserver changes without affecting static server
1236
+
1237
+ #0.0.1-beta.33
1238
+
1239
+ - mail sent issue - fix
1240
+
1241
+ #0.0.1-beta.32
1242
+
1243
+ - ssl cert update
1244
+ - webpack-bundle-analyzer version update (because of npm audit fix)
1245
+
1246
+ #0.0.1-beta.31
1247
+
1248
+ - reportpublicpath plugin rename issue fix
1249
+
1250
+ #0.0.1-beta.30
1251
+
1252
+ - report generate plugin rename
1253
+ - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
1254
+ - reportpublish sh update
1255
+
1256
+ #0.0.1-beta.29
1257
+
1258
+ - screenshot version updated
1259
+ - unit test case commit coverage issue fix
1260
+
1261
+ #0.0.1-beta.28
1262
+
1263
+ - Unitcase coverage for changed files issue fix
1264
+
1265
+ #0.0.1-beta.27
1266
+
1267
+ - prod build size and hash tracking report added
1268
+
1269
+ #0.0.1-beta.26
1270
+
1271
+ - inlined assets and css assets publicpath collide issue fix
1272
+
1273
+ #0.0.1-beta.25
1274
+
1275
+ - inline image public path issue fix
1276
+ - docs css change for sstest
1277
+
1278
+ #0.0.1-beta.24
1279
+
1280
+ - removed source map generation by default
1281
+
1282
+ #0.0.1-beta.23
1283
+
1284
+ - windows path issue in i18I18NInjectIntoIndexPlugin plugin
1285
+
1286
+ #0.0.1-beta.22
1287
+
1288
+ - unusedfilesplugin issue fixed and print valid info
1289
+
1290
+ #0.0.1-beta.21
1291
+
1292
+ - production build hash details exported in index html
1293
+
1294
+ #0.0.1-beta.20
1295
+
1296
+ - list the name of un documented component file name
1297
+
1298
+ #0.0.1-beta.19
1299
+
1300
+ - publicpath callback plugin added
1301
+
1302
+ #0.0.1-beta.18
1303
+
1304
+ - production build issue fix
1305
+
1306
+ #0.0.1-beta.17
1307
+
1308
+ - redux version downgraded
1309
+
1310
+ #0.0.1-beta.16
1311
+
1312
+ - Babel env and react issue fix
1313
+
1314
+ #0.0.1-beta.15
1315
+
1316
+ - Few issue fixes
1317
+ - Webpack Manifest Plugin revamped
1318
+ - @zohodesk/screenshot-test package added
1319
+
1320
+ #0.0.1-beta.14
1321
+
1322
+ - Removed minify option in css-loader config
1323
+ - Removed optimize-css-assets-webpack-plugin
1324
+ - Added UglifyCSS webpack plugin
1325
+ - Packages version up to dated expect babel-loader
1326
+ - Docs umd build issue fixed
1327
+ - CSS public path in all configs
1328
+
1329
+ #0.0.1-beta.13
1330
+
1331
+ - Breaking issues fix
1332
+ - Add eslint config file in project root folder
1333
+ - Removed hot module and SSR concepts
1334
+ - Public Path change plugin revamp
1335
+ - Replaced style-loader with MiniCssExtractPlugin for overall
1336
+
1337
+ #0.0.1-beta.12
1338
+
1339
+ - ResourceHints Plugin added
1340
+ - able to set public paths for various types of assets
1341
+ - provided few cli options for existing options
1342
+ - change ext of files while copy
1343
+ - cache directory issue fix in dev mode
1344
+ - script instrument loader added
1345
+ - eslint windows machine issue fix
1346
+
1347
+ #0.0.1-beta.11
1348
+
1349
+ - css module extension changed to .modules.css from .mcss
1350
+
1351
+ #0.0.1-beta.10
1352
+
1353
+ - css module related changes
1354
+ - unit test case breaking issue fix
1355
+
1356
+ #0.0.1-beta.9
1357
+
1358
+ - dynamic import support
1359
+ - unit test case issue fix
1360
+
1361
+ #0.0.1-beta.8
1362
+
1363
+ - major issue fixes - previous version issues
1364
+ - eslint new rules added
1365
+ - reverted babel exclude option
1366
+
1367
+ #0.0.1-beta.7
1368
+
1369
+ - optionally attributes removal - prod mode
1370
+ - pre-commit issue fixed
1371
+ - eslint fix option added
1372
+ - used exclude instead of include in babel loader
1373
+ - option lookup issue fixed
1374
+
1375
+ #0.0.1-beta.6
1376
+
1377
+ - complext proptypes support for docs
1378
+
1379
+ #0.0.1-beta.5
1380
+
1381
+ - docs slowness issue fix
1382
+ - jest update issue fix
1383
+
1384
+ #0.0.1-beta.4
1385
+
1386
+ - css chunk related changes
1387
+ - manifest json related changes
1388
+ - css bundle issue fixed
1389
+
1390
+ #0.0.1-beta.3
1391
+
1392
+ - slowness issue fixed
1393
+ - efc build issue fixed
1394
+
1395
+ 0.0.1-beta.2 changes
1396
+
1397
+ - docs changes
1398
+ - precommit hook issue fix
1399
+ - compression support
1400
+ - prod string error fix
1401
+ - efc build support
1402
+ - single style tag support
1403
+
1404
+ ```
1405
+
1406
+ ```