@zohodesk/client_build_tool 0.0.19 → 0.0.20-experimental.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -677,6 +677,1290 @@ For example
677
677
  - `customAttributes` support for add attributes to html, link , script tag in the output build.
678
678
 
679
679
 
680
+ ## v0.0.1 (18-04-2023)
681
+
682
+ First Release
683
+ **Features:-**
684
+
685
+ - 'start' command to run react app
686
+ - 'build' command to create build for react app
687
+ - 'build:lib' command to create lib for react library
688
+ - 'build:es' command to create es for react library
689
+ - 'templates' command to create es for react library
690
+ # Changelog and Release Notes
691
+
692
+ # v0.0.19 (06-01-2026)
693
+
694
+ **Feature:-**
695
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
696
+
697
+ ```
698
+ css: {
699
+ classNameOptions: {
700
+ caseOnlyFilename: true
701
+ }
702
+ }
703
+ ```
704
+
705
+
706
+ **Adjustments:-**
707
+ - issue in CssCustomOrderPlugin has been fixed
708
+ - customChunks default pattern for styles is removed (important)
709
+
710
+
711
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
712
+
713
+ **Adjustments:-**
714
+ - remove the unwanted console in the previous version
715
+ - html not creation issue due to the generate html option fixed
716
+
717
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
718
+
719
+ **revert:-**
720
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
721
+
722
+
723
+ **Feature:-**
724
+ - `alias` support for `build:es` and `build:lib`
725
+ - Add babel-plugin-module-resolver dependencies for library only
726
+ - Modify getBabelPlugin to include module resolver with aliases
727
+ - An additional entry point support has been added.
728
+ - An option for HTML generation has been provided.
729
+ - Support for CssCustomOrderPlugin has been added.
730
+
731
+ **Adjustments:-**
732
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
733
+
734
+
735
+ # v0.0.16 (05-11-2025) (deprecated)
736
+
737
+ **Adjustments:-**
738
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
739
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
740
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
741
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
742
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
743
+
744
+ # v0.0.15 (11-10-2025) (deprecated)
745
+
746
+ **Feature:-**
747
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
748
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
749
+ - Purpose:
750
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
751
+
752
+ ```
753
+ chunkGraph:{
754
+ enable: { value: true },
755
+ fileName: ''
756
+ }
757
+ ```
758
+
759
+ - Preload Chunk Split Visualization
760
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
761
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
762
+
763
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
764
+
765
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
766
+
767
+ ```
768
+ resourceHints: {
769
+ enable: true,
770
+ PreloadChunkNames: [//name of chunks to be preload//]
771
+ },
772
+ ```
773
+
774
+
775
+ # v0.0.14 (06-10-2025)
776
+
777
+ **Feature:-**
778
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
779
+
780
+ ```enableSubResourceIntegrity: true
781
+ ```
782
+ **Adjustments:-**
783
+ - add ts-loader to parse tsx and ts files
784
+
785
+ # v0.0.13 (02-09-2025)
786
+
787
+ **Adjustments:-**
788
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
789
+
790
+ **Feature:-**
791
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
792
+ - To enable this support , add this in your configuration
793
+
794
+ ```murphyBootstrapHtml{
795
+ enable: true,
796
+ chunkName: '',
797
+ filePath: ''
798
+ }```
799
+
800
+
801
+
802
+ # v0.0.12 (14-08-2025)
803
+
804
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
805
+
806
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
807
+ - remove babel-plugin-module-resolver dependencies
808
+
809
+ **Adjustments:-**
810
+ - Public Folder configuration is separated for development and production
811
+
812
+ **Bug Fix:-**
813
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
814
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
815
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
816
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
817
+
818
+
819
+ # v0.0.10 (12-05-2025)
820
+ **Feature:-**
821
+ - `alias` support for `build:es` and `build:lib`
822
+ - Add babel-plugin-module-resolver dependencies
823
+ - Modify getBabelPlugin to include module resolver with aliases
824
+
825
+ **Bug Fix:-**
826
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
827
+ - Update mockApiHandler to ensure mock function is called correctly
828
+
829
+ **Change:-**
830
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
831
+
832
+ ## v0.0.9
833
+
834
+ **Feature:-**
835
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
836
+ - to use externals, we use the following pattern in `app > externals` :
837
+
838
+ For example
839
+ ```
840
+ externals: {
841
+ <key> : <value>
842
+ }
843
+ ```
844
+
845
+ ## v0.0.6 (4-09-2023)
846
+
847
+ **Feature:-**
848
+ - Generating bundle integrity report 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`.
849
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
850
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
851
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
852
+ - added support for glob pattern for custom chunks split logic.
853
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
854
+
855
+ **Change:-**
856
+ - i18n name not generated issue fix.
857
+ - public path not correctly set issue fix.
858
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
859
+ ## v0.0.5 (6-08-2023)
860
+
861
+ **Changes:--**
862
+ - Typo fix in i18nRuntimeDealerPlugin.js
863
+ - fixing some bugs in resolvers.js file
864
+
865
+ ## v0.0.3 (1-08-2023)
866
+
867
+ **Changes:--**
868
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
869
+ - unwanted files deleted from build
870
+
871
+ **Issue Fix:--**
872
+ - The issue with the source map not being created in the build has been fixed."
873
+
874
+
875
+ ## v0.0.2 (28-04-2023)
876
+
877
+ **Features:-**
878
+
879
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
880
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
881
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
882
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
883
+ - `enableChunkHash` renamed as `enableFileNameHashing`
884
+
885
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
886
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
887
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
888
+ - `removePropTypes` support for remove the prop types package in the output build.
889
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
890
+ - `manifestJson` default value set as false.
891
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
892
+
893
+
894
+ ## v0.0.1 (18-04-2023)
895
+
896
+ First Release
897
+ **Features:-**
898
+
899
+ - 'start' command to run react app
900
+ - 'build' command to create build for react app
901
+ - 'build:lib' command to create lib for react library
902
+ - 'build:es' command to create es for react library
903
+ - 'templates' command to create es for react library
904
+ # Changelog and Release Notes
905
+
906
+ # v0.0.19 (06-01-2026)
907
+
908
+ **Feature:-**
909
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
910
+
911
+ ```
912
+ css: {
913
+ classNameOptions: {
914
+ caseOnlyFilename: true
915
+ }
916
+ }
917
+ ```
918
+
919
+
920
+ **Adjustments:-**
921
+ - issue in CssCustomOrderPlugin has been fixed
922
+ - customChunks default pattern for styles is removed (important)
923
+
924
+
925
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
926
+
927
+ **Adjustments:-**
928
+ - remove the unwanted console in the previous version
929
+ - html not creation issue due to the generate html option fixed
930
+
931
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
932
+
933
+ **revert:-**
934
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
935
+
936
+
937
+ **Feature:-**
938
+ - `alias` support for `build:es` and `build:lib`
939
+ - Add babel-plugin-module-resolver dependencies for library only
940
+ - Modify getBabelPlugin to include module resolver with aliases
941
+ - An additional entry point support has been added.
942
+ - An option for HTML generation has been provided.
943
+ - Support for CssCustomOrderPlugin has been added.
944
+
945
+ **Adjustments:-**
946
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
947
+
948
+
949
+ # v0.0.16 (05-11-2025) (deprecated)
950
+
951
+ **Adjustments:-**
952
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
953
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
954
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
955
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
956
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
957
+
958
+ # v0.0.15 (11-10-2025) (deprecated)
959
+
960
+ **Feature:-**
961
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
962
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
963
+ - Purpose:
964
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
965
+
966
+ ```
967
+ chunkGraph:{
968
+ enable: { value: true },
969
+ fileName: ''
970
+ }
971
+ ```
972
+
973
+ - Preload Chunk Split Visualization
974
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
975
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
976
+
977
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
978
+
979
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
980
+
981
+ ```
982
+ resourceHints: {
983
+ enable: true,
984
+ PreloadChunkNames: [//name of chunks to be preload//]
985
+ },
986
+ ```
987
+
988
+
989
+ # v0.0.14 (06-10-2025)
990
+
991
+ **Feature:-**
992
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
993
+
994
+ ```enableSubResourceIntegrity: true
995
+ ```
996
+ **Adjustments:-**
997
+ - add ts-loader to parse tsx and ts files
998
+
999
+ # v0.0.13 (02-09-2025)
1000
+
1001
+ **Adjustments:-**
1002
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
1003
+
1004
+ **Feature:-**
1005
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
1006
+ - To enable this support , add this in your configuration
1007
+
1008
+ ```murphyBootstrapHtml{
1009
+ enable: true,
1010
+ chunkName: '',
1011
+ filePath: ''
1012
+ }```
1013
+
1014
+
1015
+
1016
+ # v0.0.12 (14-08-2025)
1017
+
1018
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
1019
+
1020
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
1021
+ - remove babel-plugin-module-resolver dependencies
1022
+
1023
+ **Adjustments:-**
1024
+ - Public Folder configuration is separated for development and production
1025
+
1026
+ **Bug Fix:-**
1027
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
1028
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
1029
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
1030
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
1031
+
1032
+
1033
+ # v0.0.10 (12-05-2025)
1034
+ **Feature:-**
1035
+ - `alias` support for `build:es` and `build:lib`
1036
+ - Add babel-plugin-module-resolver dependencies
1037
+ - Modify getBabelPlugin to include module resolver with aliases
1038
+
1039
+ **Bug Fix:-**
1040
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
1041
+ - Update mockApiHandler to ensure mock function is called correctly
1042
+
1043
+ **Change:-**
1044
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
1045
+
1046
+ ## v0.0.9
1047
+
1048
+ **Feature:-**
1049
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
1050
+ - to use externals, we use the following pattern in `app > externals` :
1051
+
1052
+ For example
1053
+ ```
1054
+ externals: {
1055
+ <key> : <value>
1056
+ }
1057
+ ```
1058
+
1059
+ ## v0.0.6 (4-09-2023)
1060
+
1061
+ **Feature:-**
1062
+ - Generating bundle integrity report 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`.
1063
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
1064
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
1065
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
1066
+ - added support for glob pattern for custom chunks split logic.
1067
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
1068
+
1069
+ **Change:-**
1070
+ - i18n name not generated issue fix.
1071
+ - public path not correctly set issue fix.
1072
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
1073
+ ## v0.0.5 (6-08-2023)
1074
+
1075
+ **Changes:--**
1076
+ - Typo fix in i18nRuntimeDealerPlugin.js
1077
+ - fixing some bugs in resolvers.js file
1078
+
1079
+ ## v0.0.3 (1-08-2023)
1080
+
1081
+ **Changes:--**
1082
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
1083
+ - unwanted files deleted from build
1084
+
1085
+ **Issue Fix:--**
1086
+ - The issue with the source map not being created in the build has been fixed."
1087
+
1088
+
1089
+ ## v0.0.2 (28-04-2023)
1090
+
1091
+ **Features:-**
1092
+
1093
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
1094
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
1095
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
1096
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
1097
+ - `enableChunkHash` renamed as `enableFileNameHashing`
1098
+
1099
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
1100
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
1101
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
1102
+ - `removePropTypes` support for remove the prop types package in the output build.
1103
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
1104
+ - `manifestJson` default value set as false.
1105
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
1106
+
1107
+
1108
+ ## v0.0.1 (18-04-2023)
1109
+
1110
+ First Release
1111
+ **Features:-**
1112
+
1113
+ - 'start' command to run react app
1114
+ - 'build' command to create build for react app
1115
+ - 'build:lib' command to create lib for react library
1116
+ - 'build:es' command to create es for react library
1117
+ - 'templates' command to create es for react library
1118
+ # Changelog and Release Notes
1119
+
1120
+ # v0.0.19 (06-01-2026)
1121
+
1122
+ **Feature:-**
1123
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
1124
+
1125
+ ```
1126
+ css: {
1127
+ classNameOptions: {
1128
+ caseOnlyFilename: true
1129
+ }
1130
+ }
1131
+ ```
1132
+
1133
+
1134
+ **Adjustments:-**
1135
+ - issue in CssCustomOrderPlugin has been fixed
1136
+ - customChunks default pattern for styles is removed (important)
1137
+
1138
+
1139
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
1140
+
1141
+ **Adjustments:-**
1142
+ - remove the unwanted console in the previous version
1143
+ - html not creation issue due to the generate html option fixed
1144
+
1145
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
1146
+
1147
+ **revert:-**
1148
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
1149
+
1150
+
1151
+ **Feature:-**
1152
+ - `alias` support for `build:es` and `build:lib`
1153
+ - Add babel-plugin-module-resolver dependencies for library only
1154
+ - Modify getBabelPlugin to include module resolver with aliases
1155
+ - An additional entry point support has been added.
1156
+ - An option for HTML generation has been provided.
1157
+ - Support for CssCustomOrderPlugin has been added.
1158
+
1159
+ **Adjustments:-**
1160
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
1161
+
1162
+
1163
+ # v0.0.16 (05-11-2025) (deprecated)
1164
+
1165
+ **Adjustments:-**
1166
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
1167
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
1168
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
1169
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
1170
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
1171
+
1172
+ # v0.0.15 (11-10-2025) (deprecated)
1173
+
1174
+ **Feature:-**
1175
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
1176
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
1177
+ - Purpose:
1178
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
1179
+
1180
+ ```
1181
+ chunkGraph:{
1182
+ enable: { value: true },
1183
+ fileName: ''
1184
+ }
1185
+ ```
1186
+
1187
+ - Preload Chunk Split Visualization
1188
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
1189
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
1190
+
1191
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
1192
+
1193
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
1194
+
1195
+ ```
1196
+ resourceHints: {
1197
+ enable: true,
1198
+ PreloadChunkNames: [//name of chunks to be preload//]
1199
+ },
1200
+ ```
1201
+
1202
+
1203
+ # v0.0.14 (06-10-2025)
1204
+
1205
+ **Feature:-**
1206
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
1207
+
1208
+ ```enableSubResourceIntegrity: true
1209
+ ```
1210
+ **Adjustments:-**
1211
+ - add ts-loader to parse tsx and ts files
1212
+
1213
+ # v0.0.13 (02-09-2025)
1214
+
1215
+ **Adjustments:-**
1216
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
1217
+
1218
+ **Feature:-**
1219
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
1220
+ - To enable this support , add this in your configuration
1221
+
1222
+ ```murphyBootstrapHtml{
1223
+ enable: true,
1224
+ chunkName: '',
1225
+ filePath: ''
1226
+ }```
1227
+
1228
+
1229
+
1230
+ # v0.0.12 (14-08-2025)
1231
+
1232
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
1233
+
1234
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
1235
+ - remove babel-plugin-module-resolver dependencies
1236
+
1237
+ **Adjustments:-**
1238
+ - Public Folder configuration is separated for development and production
1239
+
1240
+ **Bug Fix:-**
1241
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
1242
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
1243
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
1244
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
1245
+
1246
+
1247
+ # v0.0.10 (12-05-2025)
1248
+ **Feature:-**
1249
+ - `alias` support for `build:es` and `build:lib`
1250
+ - Add babel-plugin-module-resolver dependencies
1251
+ - Modify getBabelPlugin to include module resolver with aliases
1252
+
1253
+ **Bug Fix:-**
1254
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
1255
+ - Update mockApiHandler to ensure mock function is called correctly
1256
+
1257
+ **Change:-**
1258
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
1259
+
1260
+ ## v0.0.9
1261
+
1262
+ **Feature:-**
1263
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
1264
+ - to use externals, we use the following pattern in `app > externals` :
1265
+
1266
+ For example
1267
+ ```
1268
+ externals: {
1269
+ <key> : <value>
1270
+ }
1271
+ ```
1272
+
1273
+ ## v0.0.6 (4-09-2023)
1274
+
1275
+ **Feature:-**
1276
+ - Generating bundle integrity report 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`.
1277
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
1278
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
1279
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
1280
+ - added support for glob pattern for custom chunks split logic.
1281
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
1282
+
1283
+ **Change:-**
1284
+ - i18n name not generated issue fix.
1285
+ - public path not correctly set issue fix.
1286
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
1287
+ ## v0.0.5 (6-08-2023)
1288
+
1289
+ **Changes:--**
1290
+ - Typo fix in i18nRuntimeDealerPlugin.js
1291
+ - fixing some bugs in resolvers.js file
1292
+
1293
+ ## v0.0.3 (1-08-2023)
1294
+
1295
+ **Changes:--**
1296
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
1297
+ - unwanted files deleted from build
1298
+
1299
+ **Issue Fix:--**
1300
+ - The issue with the source map not being created in the build has been fixed."
1301
+
1302
+
1303
+ ## v0.0.2 (28-04-2023)
1304
+
1305
+ **Features:-**
1306
+
1307
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
1308
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
1309
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
1310
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
1311
+ - `enableChunkHash` renamed as `enableFileNameHashing`
1312
+
1313
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
1314
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
1315
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
1316
+ - `removePropTypes` support for remove the prop types package in the output build.
1317
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
1318
+ - `manifestJson` default value set as false.
1319
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
1320
+
1321
+
1322
+ ## v0.0.1 (18-04-2023)
1323
+
1324
+ First Release
1325
+ **Features:-**
1326
+
1327
+ - 'start' command to run react app
1328
+ - 'build' command to create build for react app
1329
+ - 'build:lib' command to create lib for react library
1330
+ - 'build:es' command to create es for react library
1331
+ - 'templates' command to create es for react library
1332
+ # Changelog and Release Notes
1333
+
1334
+ # v0.0.19 (06-01-2026)
1335
+
1336
+ **Feature:-**
1337
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
1338
+
1339
+ ```
1340
+ css: {
1341
+ classNameOptions: {
1342
+ caseOnlyFilename: true
1343
+ }
1344
+ }
1345
+ ```
1346
+
1347
+
1348
+ **Adjustments:-**
1349
+ - issue in CssCustomOrderPlugin has been fixed
1350
+ - customChunks default pattern for styles is removed (important)
1351
+
1352
+
1353
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
1354
+
1355
+ **Adjustments:-**
1356
+ - remove the unwanted console in the previous version
1357
+ - html not creation issue due to the generate html option fixed
1358
+
1359
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
1360
+
1361
+ **revert:-**
1362
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
1363
+
1364
+
1365
+ **Feature:-**
1366
+ - `alias` support for `build:es` and `build:lib`
1367
+ - Add babel-plugin-module-resolver dependencies for library only
1368
+ - Modify getBabelPlugin to include module resolver with aliases
1369
+ - An additional entry point support has been added.
1370
+ - An option for HTML generation has been provided.
1371
+ - Support for CssCustomOrderPlugin has been added.
1372
+
1373
+ **Adjustments:-**
1374
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
1375
+
1376
+
1377
+ # v0.0.16 (05-11-2025) (deprecated)
1378
+
1379
+ **Adjustments:-**
1380
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
1381
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
1382
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
1383
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
1384
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
1385
+
1386
+ # v0.0.15 (11-10-2025) (deprecated)
1387
+
1388
+ **Feature:-**
1389
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
1390
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
1391
+ - Purpose:
1392
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
1393
+
1394
+ ```
1395
+ chunkGraph:{
1396
+ enable: { value: true },
1397
+ fileName: ''
1398
+ }
1399
+ ```
1400
+
1401
+ - Preload Chunk Split Visualization
1402
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
1403
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
1404
+
1405
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
1406
+
1407
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
1408
+
1409
+ ```
1410
+ resourceHints: {
1411
+ enable: true,
1412
+ PreloadChunkNames: [//name of chunks to be preload//]
1413
+ },
1414
+ ```
1415
+
1416
+
1417
+ # v0.0.14 (06-10-2025)
1418
+
1419
+ **Feature:-**
1420
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
1421
+
1422
+ ```enableSubResourceIntegrity: true
1423
+ ```
1424
+ **Adjustments:-**
1425
+ - add ts-loader to parse tsx and ts files
1426
+
1427
+ # v0.0.13 (02-09-2025)
1428
+
1429
+ **Adjustments:-**
1430
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
1431
+
1432
+ **Feature:-**
1433
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
1434
+ - To enable this support , add this in your configuration
1435
+
1436
+ ```murphyBootstrapHtml{
1437
+ enable: true,
1438
+ chunkName: '',
1439
+ filePath: ''
1440
+ }```
1441
+
1442
+
1443
+
1444
+ # v0.0.12 (14-08-2025)
1445
+
1446
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
1447
+
1448
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
1449
+ - remove babel-plugin-module-resolver dependencies
1450
+
1451
+ **Adjustments:-**
1452
+ - Public Folder configuration is separated for development and production
1453
+
1454
+ **Bug Fix:-**
1455
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
1456
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
1457
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
1458
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
1459
+
1460
+
1461
+ # v0.0.10 (12-05-2025)
1462
+ **Feature:-**
1463
+ - `alias` support for `build:es` and `build:lib`
1464
+ - Add babel-plugin-module-resolver dependencies
1465
+ - Modify getBabelPlugin to include module resolver with aliases
1466
+
1467
+ **Bug Fix:-**
1468
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
1469
+ - Update mockApiHandler to ensure mock function is called correctly
1470
+
1471
+ **Change:-**
1472
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
1473
+
1474
+ ## v0.0.9
1475
+
1476
+ **Feature:-**
1477
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
1478
+ - to use externals, we use the following pattern in `app > externals` :
1479
+
1480
+ For example
1481
+ ```
1482
+ externals: {
1483
+ <key> : <value>
1484
+ }
1485
+ ```
1486
+
1487
+ ## v0.0.6 (4-09-2023)
1488
+
1489
+ **Feature:-**
1490
+ - Generating bundle integrity report 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`.
1491
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
1492
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
1493
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
1494
+ - added support for glob pattern for custom chunks split logic.
1495
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
1496
+
1497
+ **Change:-**
1498
+ - i18n name not generated issue fix.
1499
+ - public path not correctly set issue fix.
1500
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
1501
+ ## v0.0.5 (6-08-2023)
1502
+
1503
+ **Changes:--**
1504
+ - Typo fix in i18nRuntimeDealerPlugin.js
1505
+ - fixing some bugs in resolvers.js file
1506
+
1507
+ ## v0.0.3 (1-08-2023)
1508
+
1509
+ **Changes:--**
1510
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
1511
+ - unwanted files deleted from build
1512
+
1513
+ **Issue Fix:--**
1514
+ - The issue with the source map not being created in the build has been fixed."
1515
+
1516
+
1517
+ ## v0.0.2 (28-04-2023)
1518
+
1519
+ **Features:-**
1520
+
1521
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
1522
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
1523
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
1524
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
1525
+ - `enableChunkHash` renamed as `enableFileNameHashing`
1526
+
1527
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
1528
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
1529
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
1530
+ - `removePropTypes` support for remove the prop types package in the output build.
1531
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
1532
+ - `manifestJson` default value set as false.
1533
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
1534
+
1535
+
1536
+ ## v0.0.1 (18-04-2023)
1537
+
1538
+ First Release
1539
+ **Features:-**
1540
+
1541
+ - 'start' command to run react app
1542
+ - 'build' command to create build for react app
1543
+ - 'build:lib' command to create lib for react library
1544
+ - 'build:es' command to create es for react library
1545
+ - 'templates' command to create es for react library
1546
+ # Changelog and Release Notes
1547
+
1548
+ # v0.0.19 (06-01-2026)
1549
+
1550
+ **Feature:-**
1551
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
1552
+
1553
+ ```
1554
+ css: {
1555
+ classNameOptions: {
1556
+ caseOnlyFilename: true
1557
+ }
1558
+ }
1559
+ ```
1560
+
1561
+
1562
+ **Adjustments:-**
1563
+ - issue in CssCustomOrderPlugin has been fixed
1564
+ - customChunks default pattern for styles is removed (important)
1565
+
1566
+
1567
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
1568
+
1569
+ **Adjustments:-**
1570
+ - remove the unwanted console in the previous version
1571
+ - html not creation issue due to the generate html option fixed
1572
+
1573
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
1574
+
1575
+ **revert:-**
1576
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
1577
+
1578
+
1579
+ **Feature:-**
1580
+ - `alias` support for `build:es` and `build:lib`
1581
+ - Add babel-plugin-module-resolver dependencies for library only
1582
+ - Modify getBabelPlugin to include module resolver with aliases
1583
+ - An additional entry point support has been added.
1584
+ - An option for HTML generation has been provided.
1585
+ - Support for CssCustomOrderPlugin has been added.
1586
+
1587
+ **Adjustments:-**
1588
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
1589
+
1590
+
1591
+ # v0.0.16 (05-11-2025) (deprecated)
1592
+
1593
+ **Adjustments:-**
1594
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
1595
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
1596
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
1597
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
1598
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
1599
+
1600
+ # v0.0.15 (11-10-2025) (deprecated)
1601
+
1602
+ **Feature:-**
1603
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
1604
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
1605
+ - Purpose:
1606
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
1607
+
1608
+ ```
1609
+ chunkGraph:{
1610
+ enable: { value: true },
1611
+ fileName: ''
1612
+ }
1613
+ ```
1614
+
1615
+ - Preload Chunk Split Visualization
1616
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
1617
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
1618
+
1619
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
1620
+
1621
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
1622
+
1623
+ ```
1624
+ resourceHints: {
1625
+ enable: true,
1626
+ PreloadChunkNames: [//name of chunks to be preload//]
1627
+ },
1628
+ ```
1629
+
1630
+
1631
+ # v0.0.14 (06-10-2025)
1632
+
1633
+ **Feature:-**
1634
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
1635
+
1636
+ ```enableSubResourceIntegrity: true
1637
+ ```
1638
+ **Adjustments:-**
1639
+ - add ts-loader to parse tsx and ts files
1640
+
1641
+ # v0.0.13 (02-09-2025)
1642
+
1643
+ **Adjustments:-**
1644
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
1645
+
1646
+ **Feature:-**
1647
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
1648
+ - To enable this support , add this in your configuration
1649
+
1650
+ ```murphyBootstrapHtml{
1651
+ enable: true,
1652
+ chunkName: '',
1653
+ filePath: ''
1654
+ }```
1655
+
1656
+
1657
+
1658
+ # v0.0.12 (14-08-2025)
1659
+
1660
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
1661
+
1662
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
1663
+ - remove babel-plugin-module-resolver dependencies
1664
+
1665
+ **Adjustments:-**
1666
+ - Public Folder configuration is separated for development and production
1667
+
1668
+ **Bug Fix:-**
1669
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
1670
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
1671
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
1672
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
1673
+
1674
+
1675
+ # v0.0.10 (12-05-2025)
1676
+ **Feature:-**
1677
+ - `alias` support for `build:es` and `build:lib`
1678
+ - Add babel-plugin-module-resolver dependencies
1679
+ - Modify getBabelPlugin to include module resolver with aliases
1680
+
1681
+ **Bug Fix:-**
1682
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
1683
+ - Update mockApiHandler to ensure mock function is called correctly
1684
+
1685
+ **Change:-**
1686
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
1687
+
1688
+ ## v0.0.9
1689
+
1690
+ **Feature:-**
1691
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
1692
+ - to use externals, we use the following pattern in `app > externals` :
1693
+
1694
+ For example
1695
+ ```
1696
+ externals: {
1697
+ <key> : <value>
1698
+ }
1699
+ ```
1700
+
1701
+ ## v0.0.6 (4-09-2023)
1702
+
1703
+ **Feature:-**
1704
+ - Generating bundle integrity report 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`.
1705
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
1706
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
1707
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
1708
+ - added support for glob pattern for custom chunks split logic.
1709
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
1710
+
1711
+ **Change:-**
1712
+ - i18n name not generated issue fix.
1713
+ - public path not correctly set issue fix.
1714
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
1715
+ ## v0.0.5 (6-08-2023)
1716
+
1717
+ **Changes:--**
1718
+ - Typo fix in i18nRuntimeDealerPlugin.js
1719
+ - fixing some bugs in resolvers.js file
1720
+
1721
+ ## v0.0.3 (1-08-2023)
1722
+
1723
+ **Changes:--**
1724
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
1725
+ - unwanted files deleted from build
1726
+
1727
+ **Issue Fix:--**
1728
+ - The issue with the source map not being created in the build has been fixed."
1729
+
1730
+
1731
+ ## v0.0.2 (28-04-2023)
1732
+
1733
+ **Features:-**
1734
+
1735
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
1736
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
1737
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
1738
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
1739
+ - `enableChunkHash` renamed as `enableFileNameHashing`
1740
+
1741
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
1742
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
1743
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
1744
+ - `removePropTypes` support for remove the prop types package in the output build.
1745
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
1746
+ - `manifestJson` default value set as false.
1747
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
1748
+
1749
+
1750
+ ## v0.0.1 (18-04-2023)
1751
+
1752
+ First Release
1753
+ **Features:-**
1754
+
1755
+ - 'start' command to run react app
1756
+ - 'build' command to create build for react app
1757
+ - 'build:lib' command to create lib for react library
1758
+ - 'build:es' command to create es for react library
1759
+ - 'templates' command to create es for react library
1760
+ # Changelog and Release Notes
1761
+
1762
+ # v0.0.19 (06-01-2026)
1763
+
1764
+ **Feature:-**
1765
+ - During class name generation, when the template included the file name, it was converted to lowercase by default. Support has now been added to include the file name as class names in a case-insensitive manner.
1766
+
1767
+ ```
1768
+ css: {
1769
+ classNameOptions: {
1770
+ caseOnlyFilename: true
1771
+ }
1772
+ }
1773
+ ```
1774
+
1775
+
1776
+ **Adjustments:-**
1777
+ - issue in CssCustomOrderPlugin has been fixed
1778
+ - customChunks default pattern for styles is removed (important)
1779
+
1780
+
1781
+ # v0.0.18 (23-12-2025)(issue in CssCustomOrderPlugin)
1782
+
1783
+ **Adjustments:-**
1784
+ - remove the unwanted console in the previous version
1785
+ - html not creation issue due to the generate html option fixed
1786
+
1787
+ # v0.0.17 (22-12-2025) (html not creation issue) (issue in CssCustomOrderPlugin)
1788
+
1789
+ **revert:-**
1790
+ - InjectChunkGraphPlugin and the pfc and plc functions were reverted due to UAT issues unrelated to our tool. Consequently, the plugin could not be included in this version. we rewriting the plc and pfc in resource hints plugins recently, it will function correctly when the new plugin is enabled,so revert this changes from this version
1791
+
1792
+
1793
+ **Feature:-**
1794
+ - `alias` support for `build:es` and `build:lib`
1795
+ - Add babel-plugin-module-resolver dependencies for library only
1796
+ - Modify getBabelPlugin to include module resolver with aliases
1797
+ - An additional entry point support has been added.
1798
+ - An option for HTML generation has been provided.
1799
+ - Support for CssCustomOrderPlugin has been added.
1800
+
1801
+ **Adjustments:-**
1802
+ - ChunkHierarchyPlugin.js – modified and rewrite the plugin to get the proper output (this is the stable version of this plugin).
1803
+
1804
+
1805
+ # v0.0.16 (05-11-2025) (deprecated)
1806
+
1807
+ **Adjustments:-**
1808
+ - ChunkHierarchyPlugin.js – Added support for ConcatenatedModule modules.
1809
+ - InjectChunkGraphPlugin.js – Changed the template name from {{--preload-chunk-graph-object}} to __PRELOAD_CHUNK_GRAPH__ to resolve minification issues.
1810
+ - Disabled CSS source map generation – CSS source maps were being created when RTL split was disabled and sourceMap was enabled, causing issues. Hence, CSS source map creation has been disabled
1811
+ - Source map path correction – The resolving paths in source map files appeared as zohodesk-react/./src, which was incompatible with the Murphy tool. Updated it to zohodesk-react/src by adding a function to devtoolModuleFilenameTemplate in the output configuration.
1812
+ - ChunkHierarchyPlugin – Made it active in development mode as well by removing the “run only in production” condition.
1813
+
1814
+ # v0.0.15 (11-10-2025) (deprecated)
1815
+
1816
+ **Feature:-**
1817
+ - Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
1818
+ For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
1819
+ - Purpose:
1820
+ To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
1821
+
1822
+ ```
1823
+ chunkGraph:{
1824
+ enable: { value: true },
1825
+ fileName: ''
1826
+ }
1827
+ ```
1828
+
1829
+ - Preload Chunk Split Visualization
1830
+ Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
1831
+ When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it
1832
+
1833
+ rewrite the plc and pfc fucntion in resourceHints plugin and created a new plugin to inject the sub chunks of the preloaded chunks in runtime file
1834
+
1835
+ if resourceHints not enabled plc , pfc and custom function related to this are not created
1836
+
1837
+ ```
1838
+ resourceHints: {
1839
+ enable: true,
1840
+ PreloadChunkNames: [//name of chunks to be preload//]
1841
+ },
1842
+ ```
1843
+
1844
+
1845
+ # v0.0.14 (06-10-2025)
1846
+
1847
+ **Feature:-**
1848
+ - Added integrity and crossorigin attributes for all the js and css files in index.html
1849
+
1850
+ ```enableSubResourceIntegrity: true
1851
+ ```
1852
+ **Adjustments:-**
1853
+ - add ts-loader to parse tsx and ts files
1854
+
1855
+ # v0.0.13 (02-09-2025)
1856
+
1857
+ **Adjustments:-**
1858
+ - Source map files are created in the smap/ folder by default. However, they are also being created in the js/ folder to resolve the issue where Murphy was unable to locate them.
1859
+
1860
+ **Feature:-**
1861
+ - Added support for Murphy to be built as a separate chunk and injected as the top script in the initial HTML.
1862
+ - To enable this support , add this in your configuration
1863
+
1864
+ ```murphyBootstrapHtml{
1865
+ enable: true,
1866
+ chunkName: '',
1867
+ filePath: ''
1868
+ }```
1869
+
1870
+
1871
+
1872
+ # v0.0.12 (14-08-2025)
1873
+
1874
+ - Fixed the initial i18n loading issue caused by using the same function in both the i18nRuntimeDealer plugin and decidePublicPath
1875
+
1876
+ # v0.0.11 (07-08-2025) (had an issue while enable i18n chunk split plugin)
1877
+ - remove babel-plugin-module-resolver dependencies
1878
+
1879
+ **Adjustments:-**
1880
+ - Public Folder configuration is separated for development and production
1881
+
1882
+ **Bug Fix:-**
1883
+ - Fixed the issue where the build log was not visible when `stats (bundle integrity)` was enabled. The problem was resolved by adding an error check in the `bundleIntegrity plugin`.
1884
+ - Removed the babel-plugin-module-resolver dependency to resolve the alias resolution issue in the application.
1885
+ - Fixed the issue where a space in the variable name causes it to return an undefined value.
1886
+ - Fixed the URL path generation issue that occurred while using context in the development setup.
1887
+
1888
+
1889
+ # v0.0.10 (12-05-2025)
1890
+ **Feature:-**
1891
+ - `alias` support for `build:es` and `build:lib`
1892
+ - Add babel-plugin-module-resolver dependencies
1893
+ - Modify getBabelPlugin to include module resolver with aliases
1894
+
1895
+ **Bug Fix:-**
1896
+ - Enhance runBabelForTSFile to handle both .tsx and .ts file extensions
1897
+ - Update mockApiHandler to ensure mock function is called correctly
1898
+
1899
+ **Change:-**
1900
+ - Refactor defaultConfigValues.js to include cli options for enableRTLSplit
1901
+
1902
+ ## v0.0.9
1903
+
1904
+ **Feature:-**
1905
+ - externals was added to Prevent bundling of certain imported packages and retrieve these external dependencies at runtime.
1906
+ - to use externals, we use the following pattern in `app > externals` :
1907
+
1908
+ For example
1909
+ ```
1910
+ externals: {
1911
+ <key> : <value>
1912
+ }
1913
+ ```
1914
+
1915
+ ## v0.0.6 (4-09-2023)
1916
+
1917
+ **Feature:-**
1918
+ - Generating bundle integrity report 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`.
1919
+ - Added Resource Cleanup plugin to cleanup resource retained by build tool. this plugin is controlled by efc flag resourcecleanup flag.
1920
+ - added support for using regex expression to get group of chunks chunkId via Resource Hint plugin prefetch/preload hook.
1921
+ only will be activate when `resourceHints` => `allowPrefetchingMultipleChunks` as `true`
1922
+ - added support for glob pattern for custom chunks split logic.
1923
+ - added options to split chunks base config in the key `app` => `customChunksBaseConfig` as object
1924
+
1925
+ **Change:-**
1926
+ - i18n name not generated issue fix.
1927
+ - public path not correctly set issue fix.
1928
+ - changing plugin hook stages in i18nRuntimePlugin and sourceMapPlugin
1929
+ ## v0.0.5 (6-08-2023)
1930
+
1931
+ **Changes:--**
1932
+ - Typo fix in i18nRuntimeDealerPlugin.js
1933
+ - fixing some bugs in resolvers.js file
1934
+
1935
+ ## v0.0.3 (1-08-2023)
1936
+
1937
+ **Changes:--**
1938
+ - `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
1939
+ - unwanted files deleted from build
1940
+
1941
+ **Issue Fix:--**
1942
+ - The issue with the source map not being created in the build has been fixed."
1943
+
1944
+
1945
+ ## v0.0.2 (28-04-2023)
1946
+
1947
+ **Features:-**
1948
+
1949
+ - `devModeContentHashAllowedTypes` support added for some project there will be a need for hash even though they run dev mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devModeContentHashAllowedTypes)
1950
+ - `devLikeHash` support for disable content hash for file names in production mode. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#devLikeHash)
1951
+ - `disableReactDevWarning` disable react dev warning such as prop-type warnings will be removed in dev mode build or server. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#disableReactDevWarning) can be enabled via `--disable_react_dev_warning` too.
1952
+ - `statsLogConfig` support to customize default webpack log after build finished. for details [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/3.0.0/packages/client_build_tool/ConfigurationDocumentation.md#statsLogConfig) can be enabled via `--disable_react_dev_warning` too.
1953
+ - `enableChunkHash` renamed as `enableFileNameHashing`
1954
+
1955
+ - `pre_processor` command to run the preprocessor.js file.preProcessor runs in build, start, buildEs, buildLib commands bu default. and we have watch mode support as well with the option (`-w`)
1956
+ - `createSeparateSmap` flag `source_map_enable` renamed as `enable_smap`
1957
+ - `removeAttribute` option changes as `babelCustomizations.removeAttribute`
1958
+ - `removePropTypes` support for remove the prop types package in the output build.
1959
+ - `devConsoleExclude` support for remove the _console statements_ such as _console.log_, _console.warn_ in the output build.
1960
+ - `manifestJson` default value set as false.
1961
+ - `customAttributes` support for add attributes to html, link , script tag in the output build.
1962
+
1963
+
680
1964
  ## v0.0.1 (18-04-2023)
681
1965
 
682
1966
  First Release