@zohodesk/react-cli 1.1.11-exp.5 → 1.1.11-exp.7

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