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