@zohodesk/react-cli 0.0.1-exp.175.0 → 0.0.1-exp.176.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +180 -180
  3. package/.prettierrc +6 -6
  4. package/{CHANGELOG-fz.md → CHANGELOG.md} +0 -0
  5. package/README.md +1025 -27
  6. package/bin/cli.js +482 -482
  7. package/cert/Tsicsezwild-22-23.crt +37 -0
  8. package/cert/Tsicsezwild-22-23.key +27 -0
  9. package/docs/CustomChunks.md +26 -26
  10. package/docs/DevStart.md +18 -18
  11. package/docs/HoverActive.md +12 -12
  12. package/docs/InstallNode.md +28 -28
  13. package/docs/SelectorWeight.md +6 -0
  14. package/docs/TODOS.md +10 -10
  15. package/docs/ValueReplacer.md +60 -60
  16. package/docs/VariableConversion.md +719 -678
  17. package/docs/warnings_while_install.txt +35 -35
  18. package/files/eslintrc.js +62 -62
  19. package/files/prettierrc.js +3 -3
  20. package/lib/configs/webpack.css.umd.config.js +4 -4
  21. package/lib/configs/webpack.dev.config.js +34 -6
  22. package/lib/configs/webpack.docs.config.js +24 -5
  23. package/lib/configs/webpack.impact.config.js +20 -6
  24. package/lib/configs/webpack.prod.config.js +35 -10
  25. package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
  26. package/lib/loaderUtils/getCSSLoaders.js +27 -19
  27. package/lib/loaderUtils/windowsModification.js +11 -0
  28. package/lib/loaders/workerLoader.js +9 -9
  29. package/lib/pluginUtils/getDevPlugins.js +42 -20
  30. package/lib/pluginUtils/getProdPlugins.js +45 -24
  31. package/lib/plugins/EFCPlugin.md +6 -6
  32. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  33. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  34. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  35. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  36. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
  37. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  38. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  39. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  40. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  41. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  42. package/lib/plugins/SelectorPlugin.js +97 -0
  43. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  44. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  45. package/lib/plugins/VariableConversionCollector.js +322 -0
  46. package/lib/plugins/composeCommonPlugin.js +30 -0
  47. package/lib/postcss-plugins/RTLSplitPlugin.js +10 -10
  48. package/lib/postcss-plugins/__test__/test1Input.css +38 -38
  49. package/lib/postcss-plugins/__test__/test1Output.css +38 -38
  50. package/lib/postcss-plugins/hoverActivePlugin.js +3 -3
  51. package/lib/postcss-plugins/variableModificationPlugin/ErrorHandler.js +37 -14
  52. package/lib/postcss-plugins/variableModificationPlugin/index.js +203 -144
  53. package/lib/schemas/index.js +18 -12
  54. package/lib/servers/docsServerCore.js +12 -13
  55. package/lib/servers/httpsOptions.js +9 -40
  56. package/lib/servers/nowatchserver.js +11 -12
  57. package/lib/servers/server.js +13 -14
  58. package/lib/sh/pre-commit.sh +34 -34
  59. package/lib/sh/reportPublish.sh +45 -45
  60. package/lib/utils/buildstats.html +148 -148
  61. package/lib/utils/getOptions.js +13 -13
  62. package/lib/utils/resultSchema.json +73 -73
  63. package/npm8.md +9 -9
  64. package/package.json +146 -119
  65. package/postpublish.js +6 -8
  66. package/templates/app/.eslintrc.js +140 -140
  67. package/templates/app/README.md +12 -12
  68. package/templates/app/app/index.html +24 -24
  69. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  70. package/templates/app/app/properties/i18nkeys.json +3 -3
  71. package/templates/app/docs/all.html +69 -69
  72. package/templates/app/mockapi/index.js +18 -18
  73. package/templates/app/package.json +37 -37
  74. package/templates/app/src/actions/SampleActions/index.js +37 -37
  75. package/templates/app/src/actions/index.js +65 -65
  76. package/templates/app/src/appUrls.js +19 -19
  77. package/templates/app/src/components/Alert/Alert.js +134 -134
  78. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  79. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  80. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  81. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  82. package/templates/app/src/components/Sample/SampleList.js +61 -61
  83. package/templates/app/src/components/Slider/Slider.css +41 -41
  84. package/templates/app/src/components/Slider/Slider.js +55 -55
  85. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  86. package/templates/app/src/containers/AppContainer/index.js +96 -96
  87. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  88. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  89. package/templates/app/src/containers/DevTools/index.js +10 -10
  90. package/templates/app/src/containers/Header/index.js +67 -67
  91. package/templates/app/src/containers/Header/index.module.css +43 -43
  92. package/templates/app/src/containers/Redirect/index.js +63 -63
  93. package/templates/app/src/containers/Redirector/index.js +47 -47
  94. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  95. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  96. package/templates/app/src/historyChange.js +5 -5
  97. package/templates/app/src/index.html +10 -10
  98. package/templates/app/src/index.js +24 -24
  99. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  100. package/templates/app/src/reducers/alertData.js +11 -11
  101. package/templates/app/src/reducers/index.js +6 -6
  102. package/templates/app/src/reducers/samples.js +19 -19
  103. package/templates/app/src/store/configureStore.dev.js +51 -51
  104. package/templates/app/src/store/configureStore.js +5 -5
  105. package/templates/app/src/store/configureStore.prod.js +26 -26
  106. package/templates/app/src/util/Common.js +5 -5
  107. package/templates/app/src/util/RequestAPI.js +132 -132
  108. package/templates/docs/all.html +249 -249
  109. package/templates/docs/component.html +178 -178
  110. package/templates/docs/components.html +221 -221
  111. package/templates/docs/css/b.min.css +6 -6
  112. package/templates/docs/css/component.css +42 -42
  113. package/templates/docs/css/componentTest.css +6 -6
  114. package/templates/docs/css/hopscotch.css +585 -585
  115. package/templates/docs/css/style.css +1022 -1022
  116. package/templates/docs/impactReportTemplate.html +154 -154
  117. package/templates/docs/index.html +1501 -1501
  118. package/templates/docs/js/active-line.js +72 -72
  119. package/templates/docs/js/b.min.js +7 -7
  120. package/templates/docs/js/codemirror.js +9680 -9680
  121. package/templates/docs/js/designTokens.js +334 -334
  122. package/templates/docs/js/j.min.js +4 -4
  123. package/templates/docs/js/javascript.js +874 -874
  124. package/templates/docs/js/matchbrackets.js +145 -145
  125. package/Changelog.md +0 -1019
  126. package/lib/configs/resolvers.js +0 -38
  127. package/lib/constants.js +0 -31
package/README.md CHANGED
@@ -1,27 +1,1025 @@
1
- # React CLI
2
-
3
- A CLI tool for build modern web application and libraries
4
-
5
-
6
- # Installation
7
- Below Steps:-
8
-
9
- > `npm i -g @zohodesk/react-cli`
10
-
11
- add in you project `package.json`
12
-
13
- ```json
14
- {
15
- "scripts": {
16
- "start": "react-cli start",
17
- "build": "react-cli build"
18
- }
19
- }
20
- ```
21
-
22
- and create below files
23
- - `src/index.js`
24
- - `src/index.html`
25
-
26
- now you to run app
27
- >`npm run start`
1
+ # React CLI
2
+
3
+ A CLI tool for build modern web application and libraries
4
+
5
+ # 0.0.1-beta.177
6
+
7
+ * new Error `MULTIPLE_OCCURANCES` supported.
8
+ * In case css --variables are not assigned an error will be thrown. The unassigned variables can be manually assigned in `variableMapping.json`
9
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
10
+
11
+ # 0.0.1-beta.176
12
+ **Features:**
13
+ * we have added feature to **increase Selector weight** for all css classes in your project during build time.
14
+ To enable this feature you have to set `react-cli.app.plugins.selectorWeight` as `true` in **package.json**.
15
+ For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/SelectorWeight.md)
16
+ * Updates to variable replacement are given :
17
+ * css variables with -- are now supported due to the webpack plugin `VariableConversionCollector` that is generated for the same.
18
+ * `DECIMAL_CHECK`, `DECIMAL_REJECT` are two new errors supported.
19
+ * support for text-indent, clip, flex, flex-basis, row-gap, column-gap, gap properties are now given.
20
+ For more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
21
+
22
+ # 0.0.1-beta.175
23
+ **Issue Fix:-**
24
+ * When we use "hoverActive" @import in css not working issue fixed
25
+
26
+ **Features:**
27
+ * `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
28
+
29
+ # 0.0.1-beta.174
30
+
31
+ cli has been updated to fix compose issue faced when classname:hover exists and classname does not before compose
32
+
33
+ **Issue Fix:-**
34
+ * In react-cli version `0.0.1-beta.173`, when we use `start` command throws error issue fixed
35
+ * while using `cssVariableReplacementOptions`, compose issue faced in css files, when classname:hover exists and classname does not exist issue fixed
36
+
37
+ **Feature:-**
38
+ * `react-cli.test.classnameFormat` option added to change CssModules (Ex: import style from "./a.module.css" ) className transform template unittest case.
39
+ `classnameFormat` default value `[classname]` you can customize it. Example: `[classname]-[hash]`
40
+
41
+ **Changes:-**
42
+ * `jsonFile_test_*.json` files deleted after they used.
43
+
44
+ # 0.0.1-beta.173
45
+
46
+ **Features:**
47
+ * we have added feature to **convert px to custom variables** for all css files in your project during build time.
48
+ To enable this feature you have to set `react-cli.app.plugins.cssVariableReplacement` as `true` in **package.json**.
49
+
50
+ 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
51
+
52
+ For an more information and reference, refer to `[details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/VariableConversion.md)
53
+
54
+ # 0.0.1-beta.172
55
+ We have renamed some options, For Our future features convenience.
56
+ We have given fallback support.
57
+ Deprecation Warnings:-
58
+ * `react-cli.app.hasRTL` ==> `react-cli.app.plugins.hasRTL`
59
+ * `react-cli.app.rtlExclude` ==> `react-cli.app.exclude.rtl`
60
+
61
+ * `react-cli.docs.hasRTL` ==> `react-cli.docs.plugins.hasRTL`
62
+ * `react-cli.docs.rtlExclude` ==> `react-cli.docs.exclude.rtl`
63
+ these options have fallback support.
64
+
65
+ # 0.0.1-beta.171
66
+
67
+ Features added :
68
+ 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.
69
+
70
+ # 0.0.1-beta.170
71
+
72
+ this version has same as `0.0.1-exp.169.1`, `0.0.1-exp.169.2`
73
+
74
+ # 0.0.1-exp.169.2
75
+
76
+ 1. flags are converted to one variable 'plugin' and used in getCssLoaders.js.
77
+ 2. files for exclusion can be put in seperate arrays in 'exclude' present in package.json.
78
+ 3. `combinerMq` has been converted to `combinerMediaQuery` for clarity.
79
+
80
+ # 0.0.1-exp.169.1
81
+
82
+ File support added for mp4 for docs dev and prod mode
83
+
84
+ # 0.0.1-beta.169
85
+
86
+ 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
87
+
88
+ 1. `--efc_version=v3` flag added for change efc version via commmand line option
89
+ 2. `hoverActive` flag added for conversion from usual hover to @media(hover:hover) and @media(hover:none) queries for hover support in mobile.
90
+ 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.
91
+
92
+ # 0.0.1-exp.168.3
93
+
94
+ Changes :
95
+
96
+ 1. code optimization ( made functions for the hoverActive cases making it more easier to access)
97
+ 2. handled `hover:ignore`, `active:ignore`, `hoverActive:ignore` cases for usual queries and media queries
98
+
99
+ # 0.0.1-exp.168.2
100
+
101
+ Changes :
102
+
103
+ 1. hoverActive case handled with postcss `hover:hover` media query and `hover:none` media query is added
104
+ 2. flag for hoverActive used to add/remove postcss changes
105
+
106
+ # 0.0.1-exp.168.1
107
+
108
+ Changes:-
109
+
110
+ 1. `cliRootPath` option removed `react-cli.app.cliRootPath` in `package.json`
111
+ Due to the reason we updated our logic to find package's executable path.
112
+ 2. `--efc_output_file=efc-sdk-[version].js` option added to modify efc output file by terminal
113
+ 3. added logic to print error message during command run, Previously when executable not found error messages not printed
114
+
115
+ # 0.0.1-beta.168
116
+
117
+ Changes:-
118
+
119
+ 1. `enableChunkHash` option enabled for dev mode, use it as `react-cli.app.enableChunkHash` in `package.json`
120
+ 2. `--enable_efc=true` option added to enable efc by terminal
121
+ 3. unwanted pem files removed
122
+ # 0.0.1-exp.167.1
123
+ Features:-
124
+ * In docs we have added `Description` for Component Props- check out it in `PropTypes` tab
125
+
126
+
127
+ # 0.0.1-beta.167
128
+
129
+ SSL certificate update
130
+ this version has same as `0.0.1-exp.166.1`, `0.0.1-exp.166.2` and below and some minor changes
131
+ Features:-
132
+
133
+ - `--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
134
+ - Example `react-cli clone --clone_type=git --clone_url=https://some.url --shallow_clone`
135
+ - `cliRootPath` option added for npm workspace related path problems
136
+ - Usage `package.json` , "react-cli" => "cliRootPath" stright key
137
+ - `unstableDepsInverse` option added for use app need library first priority over react-cli packages
138
+ - Usage `package.json` , "react-cli" => "unstableDepsInverse" stright key
139
+
140
+ Issue Fix :-
141
+
142
+ - In devmode initial html not recived after second rebuild issue fix.
143
+ - typo fix `devBulid` to `devBuild`.
144
+ - `disableES5Transpile` option missed in docs now added.
145
+ - docs libAlias not work as app for example in app we always take `es` folder to build for treshaking and reasons,
146
+ But that option not enabled in docs. now it is enabled.
147
+ - In `react-cli devbuild` command options not working properly,
148
+ when above command run via terminal not via npm run script options not working
149
+ So we send that options to webpack then it works as expected.
150
+ this behaviour need to check across os and need to be cross check with other commends as well for now we only fixed this
151
+
152
+ # 0.0.1-exp.166.2
153
+
154
+ Changes:-
155
+
156
+ - `-w` option (watch option) added for `react-cli rtl`
157
+ - Example `react-cli rtl ./src ./lib -w`
158
+ <!-- need to handle `react-cli rtl` options correctly -->
159
+ - disableES5Transpile option libAlias added for docs
160
+
161
+ # 0.0.1-exp.166.1
162
+
163
+ Changes:-
164
+
165
+ - `__testUtils__/globals.js` to jest is not mantatory
166
+ - disableES5Transpile option libAlias added
167
+
168
+ # 0.0.1-beta.166
169
+
170
+ this version has same as `# 0.0.1-exp.164.1`, `# 0.0.1-exp.164.2` and below and some minor changes
171
+
172
+ - google chorme cors preflight issue fix
173
+
174
+ # 0.0.1-beta.165
175
+
176
+ - `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)
177
+ - `valuereplacer` option added in react-cli it takes three
178
+ 1. sourceDir
179
+ 2. distDir
180
+ 3. `copyAll` is boolean flag which is for copy all other file or not. "true" means copy all files.
181
+
182
+ # 0.0.1-exp.164.1
183
+
184
+ - extra features in custom chunks reffer [this](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/2.0.0/docs/CustomChunks.md)
185
+
186
+ # 0.0.1-exp.164.2
187
+
188
+ - `devbuild` option add to react cli
189
+
190
+ # 0.0.1-beta.164
191
+
192
+ - typo fix
193
+
194
+ # 0.0.1-beta.163
195
+
196
+ - **Issue Fix:-**
197
+
198
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
199
+ - jest test cases not runnig issue fix (typo moduleNameMapper => libAlias)
200
+
201
+ - **Features :-**
202
+ - feature added for pre process logic
203
+ - tailer made requirement for preprocess, just write node js file
204
+ - mention file in `"react-cli" => "preprocess" => "runner"`
205
+ - option parse logic added for react-cli (exprimental)
206
+ - `--stop_nodemon` usally preprocessor run in `nodemon` so to stop it this option is provided
207
+
208
+ # 0.0.1-exp.162.2
209
+
210
+ - **Optimazation:-**
211
+ - double time minimize optimazation
212
+
213
+ # 0.0.1-beta.162.1
214
+
215
+ - **Issue Fix:-**
216
+ - if git not installed react-cli throws error for any command due to `getCurrentBranch` in `shemas/index.js` now fixed
217
+
218
+ # 0.0.1-beta.161.1
219
+
220
+ - **Features :-**
221
+ - feature added for pre process logic
222
+ - tailer made requirement for preprocess, just write node js file
223
+ - mention file in `"react-cli" => "preprocess" => "runner"`
224
+ - option parse logic added for react-cli (exprimental)
225
+
226
+ # 0.0.1-beta.162
227
+
228
+ - @zohodesk/datetimejs package updated to beta.8
229
+
230
+ # 0.0.1-beta.161
231
+
232
+ - **Features :-**
233
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" => "templateFilePath"`
234
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
235
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
236
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
237
+ - `assetsType` are `js`, `css`, `i18n`
238
+ - `lang` this argument only works when `i18n` is `assetsType`
239
+ - feature added for efc `cdnStatement`
240
+ - **Issue fixes:-**
241
+ - css classname hash change issue fix
242
+ - debug package conflit issue fix in nock in (react-cli test)
243
+ - manifest.json css file name correction issue for rtl and ltr
244
+
245
+ # 0.0.1-exp.161.2
246
+
247
+ - Features
248
+ - feature added for efc `templateFilePath` in `package.json` option palce is `"react-cli" => "efc" `
249
+ - `(('publicPath'))` this placeholder will be replace as publicPath string `publicPath`
250
+ - `(('getInitalAssets'))` this placeholder will be replace as function `getInitalAssets`
251
+ - `getInitalAssets` this function has two arguments `assetsType`, `lang`
252
+ - `assetsType` are `js`, `css`, `i18n`
253
+ - `lang` this argument only works when `i18n` is `assetsType`
254
+
255
+ # 0.0.1-exp.161.1
256
+
257
+ - Features
258
+ - feature added for efc `cdnStatement`
259
+ - Issue fixes:-
260
+ - css classname hash change issue fix
261
+ - debug package conflit issue fix in nock in (react-cli test)
262
+ - manifest.json css file name correction issue for rtl and ltr
263
+
264
+ # 0.0.1-beta.160
265
+
266
+ - @zohodesk/normalizer package version updated to 1.0.2
267
+
268
+ # 0.0.1-beta.159
269
+
270
+ - @zohodesk/datetimejs package updated to beta.7
271
+
272
+ # 0.0.1-exp.159
273
+
274
+ - issue fix:-
275
+ - when rtl ltr css split enable manifest json css filename keys comes with hash .
276
+
277
+ # 0.0.1-beta.158
278
+
279
+ - Removing source map files from service worker caching.
280
+
281
+ # 0.0.1-beta.157
282
+
283
+ - Experimental version issue fix(Dummy version removed)
284
+
285
+ # 0.0.1-beta.156
286
+
287
+ - ReportPublish issue fix
288
+
289
+ # 0.0.1-beta.155
290
+
291
+ - get impacted library source files option added
292
+
293
+ # 0.0.1-beta.154
294
+
295
+ - mockPrefix option for mock url prefix change
296
+ - Issue fix:-
297
+ - un wanted {{--js-smap}} in inital html without enable smap in build
298
+
299
+ # 0.0.1-beta.153
300
+
301
+ - Vendor include array added
302
+ - If you need to include any thrid party js in vendor we can use this array
303
+
304
+ # 0.0.1-beta.152
305
+
306
+ impact servise related changes:-
307
+
308
+ - 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)
309
+ - cssselector_zip option added. will be used like `--cssselector-zip=selectormapping.zip`
310
+ only work in two ways
311
+ 1. `react-cli start --disable-watch --cssselector-zip=selectormapping.zip` app start command with `--disable-watch` flag and your usaul options
312
+ 2. `react-cli nowatchstart --cssselector-zip=selectormapping.zip` app start command's usaul options
313
+ #### Urls are:-
314
+ Below express path are added, For download zip files and
315
+ - `/zips/${zipname}.zip` for css selector maps zip file (contains css_map filies and original css files)
316
+ - `/zips/build.zip` build zip file (contains bundled all files)
317
+
318
+ # 0.0.1-beta.151
319
+
320
+ - issue fix:- Docs config 'html-loader' options updated.
321
+ - sslcertUpdate feature added
322
+ - disable_watch option added. will be used like `--disable-watch` or `--disable-watch=true`
323
+ - dev_cache option added. will be used like `--dev_cache` or `--dev_cache=true`
324
+
325
+ # 0.0.1-beta.150
326
+
327
+ - issue Fix:- in npm 7 option not working issue fixed
328
+ - ssl certificate update
329
+
330
+ # 0.0.1-beta.149
331
+
332
+ - css, ltr and rtl chunk split based on [dir=ltr]
333
+ - to enable ltr and rtl chunk spilt you have to add config in you package.json
334
+ <!-- - [docs for rtl-ltr](src\plugins\RtlSplitPlugin\RtrSplit.md) -->
335
+ - we have added some options in EFCPlugin for rtlsplit related features.
336
+ - we have expoed require function for only css impact related changes with flag
337
+
338
+ # 0.0.1-beta.148
339
+
340
+ - source map enabled in prod mode for debug client
341
+ - crossorigin attribute added for scripts
342
+
343
+ # 0.0.1-beta.147
344
+
345
+ - reportpublish issue fix
346
+
347
+ # 0.0.1-beta.146
348
+
349
+ - while docs run LibraryImactPlugin not constructor issue fix
350
+ - css loader added for css impact related changes
351
+
352
+ # 0.0.1 -beta.145
353
+
354
+ - LibraryImpactPlugin added
355
+ - check impacted source components name if any version update happened with master
356
+
357
+ # 0.0.1-beta.144
358
+
359
+ - prod build bug fix
360
+
361
+ # 0.0.1-beta.143
362
+
363
+ - `babel-plugin-transform-remove-console` added for remove console properties except error and log
364
+ - `console_exculde` script added if suppose enable same in dev mode
365
+ - service worker plugin changes
366
+ - library impact changes
367
+
368
+ # 0.0.1-beta.142
369
+
370
+ - `eslint-plugin-react-hooks` added to eslint support.
371
+ - Updated exact versions to eslint plugins installation script.
372
+
373
+ # 0.0.1-beta.141
374
+
375
+ - report publish sh fixes
376
+ - duplicate removal in impacted componentTest
377
+
378
+ # 0.0.1-beta.140
379
+
380
+ - copy-webpack-plugin bug fix
381
+
382
+ # 0.0.1-beta.139
383
+
384
+ - copy-webpack-plugin downgrade
385
+ - babel runtime plugin issue fix in prod config
386
+ - few enhancements
387
+
388
+ # 0.0.1-beta.138
389
+
390
+ - sstest library version updated
391
+ - unitcase calcluation issues fixed
392
+
393
+ # 0.0.1-beta.137
394
+
395
+ - Third party css files loading issue fix
396
+
397
+ # 0.0.1-beta.136
398
+
399
+ - eslint support
400
+
401
+ # 0.0.1-beta.135
402
+
403
+ - windows publish issue
404
+
405
+ # 0.0.1-beta.134
406
+
407
+ - Build Issue Fix
408
+
409
+ # 0.0.1-beta.133
410
+
411
+ - CDN Changes in I18nSplitPlugin
412
+ - nonce support added for i18n chunks
413
+
414
+ # 0.0.1-beta.132
415
+
416
+ - CDN Changes in EFC Plugin
417
+
418
+ # 0.0.1-beta.131
419
+
420
+ - Added Cdn Change Plugin
421
+
422
+ # 0.0.1-beta.130
423
+
424
+ - Babel 7 migration, ES6 build generation config and polyfill removal
425
+ - CopyPlugin issue fix
426
+
427
+ #0.0.1-beta.129
428
+
429
+ - Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
430
+
431
+ # 0.0.1-beta.128
432
+
433
+ - Added support to generate hash for the third party files(TPHashMappingPlugin)
434
+
435
+ # 0.0.1-beta.127
436
+
437
+ - service worker plugin - to recursively add multiple directories (recursive=true)
438
+
439
+ # 0.0.1-beta.126
440
+
441
+ - issue fix in i18n split plugin
442
+
443
+ # expremental versions
444
+
445
+ - 0.0.1-beta.121
446
+ - 0.0.1-beta.122
447
+ - 0.0.1-beta.123
448
+ - 0.0.1-beta.124
449
+ - 0.0.1-beta.125
450
+
451
+ # 0.0.1-beta.120
452
+
453
+ - issue fix in third party file copying
454
+
455
+ # expremental versions
456
+
457
+ - 0.0.1-beta.119
458
+ - 0.0.1-beta.118
459
+
460
+ #0.0.1-beta.117
461
+
462
+ - createSDkFile otion added for efc
463
+ - small fix in i18n split plugin
464
+
465
+ #0.0.1-beta.116
466
+
467
+ - thirdparty package move to build (tpFolder in app config)
468
+
469
+ #0.0.1-beta.115
470
+
471
+ - Added Web worker support
472
+
473
+ #0.0.1-beta.114
474
+
475
+ - i18n split based on chunk
476
+ - to enable i18n chunk spilt you have to add config in you package.json
477
+
478
+ #0.0.1-beta.113
479
+
480
+ - Upgraded 'fz-i18n' package version to 1.2.0-beta.15
481
+
482
+ #0.0.1-beta.112
483
+
484
+ - Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
485
+ - Service worker plugin changes
486
+
487
+ #0.0.1-beta.111
488
+
489
+ - hasRTL, selectorReplace Condition Separated
490
+
491
+ #0.0.1-beta.110
492
+
493
+ - SplitChunk Order Issue Fixed
494
+ - https url issue Fixed
495
+
496
+ #0.0.1-beta.109
497
+
498
+ - @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
499
+
500
+ #0.0.1-beta.108
501
+
502
+ - @zohodesk/screenshottest package version update (18)
503
+
504
+ #0.0.1-beta.107
505
+
506
+ - changed component without docs finder added
507
+
508
+ #0.0.1-beta.106
509
+
510
+ - custom chunk support changes
511
+ - css absolute url fix
512
+
513
+ #0.0.1-beta.105
514
+
515
+ - @zohodesk/screenshottest package version update (17) with the issue fix
516
+
517
+ #0.0.1-beta.104
518
+
519
+ - ModuleStatsPlugin inject false option added to solve the webpack build twice issue
520
+
521
+ #0.0.1-beta.103
522
+
523
+ - @zohodesk/screenshottest package version update (16) with the issue fix
524
+
525
+ #0.0.1-beta.102
526
+
527
+ - @zohodesk/screenshottest package version update (15) with the issue fix
528
+
529
+ #0.0.1-beta.101
530
+
531
+ - 100 changes readme missing
532
+ - bundle analyser changes
533
+
534
+ #0.0.1-beta.100
535
+
536
+ - @zohodesk/screenshottest package version update with the issue fix
537
+ - font public path replace issue for url fonts - fixed
538
+
539
+ #0.0.1-beta.99
540
+
541
+ - can't publish already published
542
+
543
+ #0.0.1-beta.98
544
+
545
+ - defer break public path adding regex - fixed
546
+
547
+ #0.0.1-beta.97
548
+
549
+ - added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
550
+
551
+ #0.0.1-beta.96
552
+
553
+ - html plugin inject option expose and version udpate 4.2.0
554
+ - src html change i18n removal issue fix
555
+ - script loading defer added
556
+ - added babel plugin to remove proptypes
557
+
558
+ #0.0.1-beta.95
559
+
560
+ - schemas/index.js - issue fix
561
+
562
+ #0.0.1-beta.94
563
+
564
+ - screenshot test library version update
565
+ - ssserver issue fix
566
+
567
+ #0.0.1-beta.93
568
+
569
+ - selector replacer for Help Center usecase
570
+ - eslint performance plugin
571
+ - css classname hash selector support for docs
572
+ - service worker plugin
573
+
574
+ #0.0.1-beta.92
575
+
576
+ - docs ui fixes and edit mode
577
+ - @zohodesk/datetimejs version update
578
+
579
+ #0.0.1-beta.91
580
+
581
+ - repo clone command pull issue fix
582
+ - docs css change
583
+ - SSTest package version downgrade
584
+
585
+ #0.0.1-beta.90
586
+
587
+ - added support for copying Timezone data from @zohodesk/datetimejs
588
+ - docstool changes
589
+
590
+ #0.0.1-beta.89
591
+
592
+ - CSP nonce support for initial assets `{{--CSP-nonce}}`
593
+ - introduced new mode to disable react warns in dev mode (dev-no-warn)
594
+ - docs ui fix
595
+
596
+ #0.0.1-beta.88
597
+
598
+ - Impact run and Master seperate during SSTEST
599
+ - docs changes
600
+ - filenames and packages addedd in cssHashSelectors option
601
+
602
+ #0.0.1-beta.87
603
+
604
+ - run screenshot test for impacted components
605
+ - seperate master from the CI flow with the HBase storage
606
+ - docs changes
607
+ - coverage percentage check disabled
608
+
609
+ #0.0.1-beta.86
610
+
611
+ - exclude without js changes for unittest
612
+ - express server history fallback refactored
613
+
614
+ #0.0.1-beta.85
615
+
616
+ - i18n placeholder removal issue fixed
617
+ - css classname prefix moved to option. default is zd
618
+
619
+ #0.0.1-beta.84
620
+
621
+ - object spread operator support
622
+
623
+ #0.0.1-beta.83
624
+
625
+ - eslint report type by flag
626
+ - unitcase file exclude array issue fix
627
+ - sstesthack issue fix
628
+
629
+ #0.0.1-beta.82
630
+
631
+ - eslint impact run enable - completed
632
+ - devplugin cleanupstats filename import issue fix
633
+ - coveragecollector return format change
634
+
635
+ #0.0.1-beta.81
636
+
637
+ - unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
638
+
639
+ #0.0.1-beta.80
640
+
641
+ - unitcase filecoverage testpath issue fix
642
+ - shadowdom support
643
+ - postpublish and sstest hack script
644
+ - dependencies impact list
645
+ - can change runtime chunk's character
646
+ - font preload added
647
+
648
+ #0.0.1-beta.79
649
+
650
+ - unitcase filecoverage added and also codecoverage with dependencies spec added
651
+
652
+ #0.0.1-beta.78
653
+
654
+ - components and dot library's stats added with module stats
655
+ - Mini css extract plugin's unwanted logs removed
656
+ - runtime chunk added in dev mode
657
+ - nodemon windows issue fix
658
+ - testinfo failure missing while can't get coverage
659
+ - performance eslint plugin added and normalizer moved under zohodesk
660
+
661
+ #0.0.1-beta.77
662
+
663
+ - @zohodesk/eslint-plugin-zsecurity version update
664
+ - git pull origin with branch name while screenshot test after the branch switch
665
+
666
+ #0.0.1-beta.76
667
+
668
+ - breaking issue fix from last version ( prod config issue )
669
+
670
+ #0.0.1-beta.75
671
+
672
+ - sstest - reinstall dependencies after switch branch
673
+
674
+ #0.0.1-beta.74
675
+
676
+ - docs provider support (Component.\_provider)
677
+
678
+ #0.0.1-beta.73
679
+
680
+ #0.0.1-beta.72
681
+
682
+ - run eslint security rules option enable
683
+ - add the reportURL with the result.json file
684
+ - mock server post api issue fix
685
+
686
+ #0.0.1-beta.71
687
+
688
+ - publicpath hard coding while flatten build issue fix
689
+
690
+ #0.0.1-beta.70
691
+
692
+ - css class compression flag enable
693
+ - docs src URL update
694
+
695
+ #0.0.1-beta.69
696
+
697
+ - babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
698
+ - babel-lodash plugin fix with getdevplugin
699
+ - cursor blink issue fix for sstest
700
+ - in result.json unitcase coverage verified boolean added
701
+
702
+ #0.0.1-beta.68
703
+
704
+ - rtl ignore [dir] changes
705
+
706
+ #0.0.1-beta.67
707
+
708
+ - babel-plugin-transform-dynamic-import library added with package.json
709
+ - schema change with hostname cli option s
710
+
711
+ #0.0.1-beta.66
712
+
713
+ - mockport hard coded issue fix
714
+
715
+ #0.0.1-beta.65
716
+
717
+ - window rtl build issue fix
718
+ - separate rtl build support added like react-cli rtl ./src ./lib
719
+
720
+ #0.0.1-beta.64
721
+
722
+ - postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
723
+
724
+ #0.0.1-beta.63
725
+
726
+ - LTR & RTL support added
727
+
728
+ #0.0.1-beta.62
729
+
730
+ - componentTest.css entry in components.html
731
+
732
+ #0.0.1-beta.60
733
+
734
+ - SSTMiddleware hook added for ssserver
735
+ - remove some unwanted class in components.css
736
+ - componentTest.css added with common animation break css rules
737
+
738
+ #0.0.1-beta.59
739
+
740
+ - vendor files exclude from app
741
+ - since the chunk hash issue, moduleIds configured as named
742
+
743
+ #0.0.1-beta.58
744
+
745
+ - Push result json with the report zip
746
+ - screenshot-test library Version update
747
+
748
+ #0.0.1-beta.57
749
+
750
+ - vendor chunk split issue fix
751
+
752
+ #0.0.1-beta.56
753
+
754
+ - css ordering issue fix
755
+
756
+ #0.0.1-beta.55
757
+
758
+ - prod build performance changes
759
+ - css duplication issue fix
760
+ - root chunk splitting logic change
761
+
762
+ #0.0.1-beta.54
763
+
764
+ - increased css hash size 5 to 10
765
+
766
+ #0.0.1-beta.53
767
+
768
+ - generate json file for all the test results during test run
769
+ - sstest version update
770
+ - some issue fixes
771
+
772
+ #0.0.1-beta.52
773
+
774
+ - template src folder missed issue fix because of npmignore all src folder
775
+
776
+ #0.0.1-beta.51
777
+
778
+ - template app updated with redux and router by kumaresan(thala)
779
+
780
+ #0.0.1-beta.50
781
+
782
+ - window machine css unique issue fix
783
+
784
+ #0.0.1-beta.49
785
+
786
+ - dev css unique issue fix
787
+
788
+ #0.0.1-beta.48
789
+
790
+ - telephony support css unique changes
791
+
792
+ #0.0.1-beta.47
793
+
794
+ - git pull during the branch switch in ssserver
795
+ - common util file for pull and switch the branches for both git and hg
796
+
797
+ #0.0.1-beta.46
798
+
799
+ - ogg file support and tmpl file support
800
+
801
+ #0.0.1-beta.45
802
+
803
+ - checkout branch with force during sstest
804
+
805
+ #0.0.1-beta.44
806
+
807
+ - sstest master trigger issue fix
808
+
809
+ #0.0.1-beta.43
810
+
811
+ - get component object from docs server by http protocol during sstest
812
+ - reach docs server by the IP address of the host.
813
+ - get the current branch name by args
814
+
815
+ #0.0.1-beta.42
816
+
817
+ - className ssTest added and screenshot test version update
818
+
819
+ #0.0.1-beta.41
820
+
821
+ - i18n replace issue fix
822
+
823
+ - some css changes related to above
824
+ - screenshottest version update
825
+
826
+ #0.0.1-beta.40
827
+
828
+ - SSTMiddleware added to get hook from webpack build process to start sstest
829
+ - run unit test for commited files except the spec file name from name list
830
+ - publicpath added for i18n js files
831
+
832
+ #0.0.1-beta.39
833
+
834
+ - prod build check issue fix
835
+
836
+ #0.0.1-beta.38
837
+
838
+ - all unitcase runs only with master option removed
839
+ - prod mode in dev setup flag issue fix
840
+
841
+ #0.0.1-beta.37
842
+
843
+ - removed hash for index.html and add publicpath when run prod mode in dev machine
844
+ - screenshot version updated
845
+ - docs build log issue fix
846
+
847
+ #0.0.1-beta.36
848
+
849
+ - reportpublish sh file report generation even if any breakages in test scripts
850
+
851
+ #0.0.1-beta.35
852
+
853
+ - full run of spec fils only for master option added
854
+ - reportpublish sh for screenshot test report template issue fix
855
+
856
+ #0.0.1-beta.34
857
+
858
+ - monitor mockserver changes without affecting static server
859
+
860
+ #0.0.1-beta.33
861
+
862
+ - mail sent issue - fix
863
+
864
+ #0.0.1-beta.32
865
+
866
+ - ssl cert update
867
+ - webpack-bundle-analyzer version update (because of npm audit fix)
868
+
869
+ #0.0.1-beta.31
870
+
871
+ - reportpublicpath plugin rename issue fix
872
+
873
+ #0.0.1-beta.30
874
+
875
+ - report generate plugin rename
876
+ - schema changes for sstest (sstest_remotebranch => sstest_referbranch)
877
+ - reportpublish sh update
878
+
879
+ #0.0.1-beta.29
880
+
881
+ - screenshot version updated
882
+ - unit test case commit coverage issue fix
883
+
884
+ #0.0.1-beta.28
885
+
886
+ - Unitcase coverage for changed files issue fix
887
+
888
+ #0.0.1-beta.27
889
+
890
+ - prod build size and hash tracking report added
891
+
892
+ #0.0.1-beta.26
893
+
894
+ - inlined assets and css assets publicpath collide issue fix
895
+
896
+ #0.0.1-beta.25
897
+
898
+ - inline image public path issue fix
899
+ - docs css change for sstest
900
+
901
+ #0.0.1-beta.24
902
+
903
+ - removed source map generation by default
904
+
905
+ #0.0.1-beta.23
906
+
907
+ - windows path issue in i18I18NInjectIntoIndexPlugin plugin
908
+
909
+ #0.0.1-beta.22
910
+
911
+ - unusedfilesplugin issue fixed and print valid info
912
+
913
+ #0.0.1-beta.21
914
+
915
+ - production build hash details exported in index html
916
+
917
+ #0.0.1-beta.20
918
+
919
+ - list the name of un documented component file name
920
+
921
+ #0.0.1-beta.19
922
+
923
+ - publicpath callback plugin added
924
+
925
+ #0.0.1-beta.18
926
+
927
+ - production build issue fix
928
+
929
+ #0.0.1-beta.17
930
+
931
+ - redux version downgraded
932
+
933
+ #0.0.1-beta.16
934
+
935
+ - Babel env and react issue fix
936
+
937
+ #0.0.1-beta.15
938
+
939
+ - Few issue fixes
940
+ - Webpack Manifest Plugin revamped
941
+ - @zohodesk/screenshot-test package added
942
+
943
+ #0.0.1-beta.14
944
+
945
+ - Removed minify option in css-loader config
946
+ - Removed optimize-css-assets-webpack-plugin
947
+ - Added UglifyCSS webpack plugin
948
+ - Packages version up to dated expect babel-loader
949
+ - Docs umd build issue fixed
950
+ - CSS public path in all configs
951
+
952
+ #0.0.1-beta.13
953
+
954
+ - Breaking issues fix
955
+ - Add eslint config file in project root folder
956
+ - Removed hot module and SSR concepts
957
+ - Public Path change plugin revamp
958
+ - Replaced style-loader with MiniCssExtractPlugin for overall
959
+
960
+ #0.0.1-beta.12
961
+
962
+ - ResourceHints Plugin added
963
+ - able to set public paths for various types of assets
964
+ - provided few cli options for existing options
965
+ - change ext of files while copy
966
+ - cache directory issue fix in dev mode
967
+ - script instrument loader added
968
+ - eslint windows machine issue fix
969
+
970
+ #0.0.1-beta.11
971
+
972
+ - css module extension changed to .modules.css from .mcss
973
+
974
+ #0.0.1-beta.10
975
+
976
+ - css module related changes
977
+ - unit test case breaking issue fix
978
+
979
+ #0.0.1-beta.9
980
+
981
+ - dynamic import support
982
+ - unit test case issue fix
983
+
984
+ #0.0.1-beta.8
985
+
986
+ - major issue fixes - previous version issues
987
+ - eslint new rules added
988
+ - reverted babel exclude option
989
+
990
+ #0.0.1-beta.7
991
+
992
+ - optionally attributes removal - prod mode
993
+ - pre-commit issue fixed
994
+ - eslint fix option added
995
+ - used exclude instead of include in babel loader
996
+ - option lookup issue fixed
997
+
998
+ #0.0.1-beta.6
999
+
1000
+ - complext proptypes support for docs
1001
+
1002
+ #0.0.1-beta.5
1003
+
1004
+ - docs slowness issue fix
1005
+ - jest update issue fix
1006
+
1007
+ #0.0.1-beta.4
1008
+
1009
+ - css chunk related changes
1010
+ - manifest json related changes
1011
+ - css bundle issue fixed
1012
+
1013
+ #0.0.1-beta.3
1014
+
1015
+ - slowness issue fixed
1016
+ - efc build issue fixed
1017
+
1018
+ 0.0.1-beta.2 changes
1019
+
1020
+ - docs changes
1021
+ - precommit hook issue fix
1022
+ - compression support
1023
+ - prod string error fix
1024
+ - efc build support
1025
+ - single style tag support