@zohodesk/react-cli 1.1.6 → 1.1.8-exp.1

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