@zohodesk/react-cli 1.1.7 → 1.1.8-exp.2

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