@zohodesk/react-cli 0.0.1-beta.99 → 0.0.1-betaa.138.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintignore +7 -7
- package/.eslintrc.js +183 -183
- package/CHANGELOG.md +5 -0
- package/README.md +636 -491
- package/bin/cli.js +372 -367
- package/files/eslintrc.js +57 -0
- package/files/prettierrc.js +3 -0
- package/lib/babel/cmjs-plugins-presets.js +16 -9
- package/lib/babel/es-plugins-presets.js +26 -14
- package/lib/common/getEntries.js +31 -22
- package/lib/common/getPublicPathConfig.js +27 -13
- package/lib/common/index.js +21 -25
- package/lib/common/splitChunks.js +62 -53
- package/lib/common/templateParameters.js +10 -8
- package/lib/configs/jest.config.js +15 -25
- package/lib/configs/webpack.component.umd.config.js +31 -37
- package/lib/configs/webpack.css.umd.config.js +44 -47
- package/lib/configs/webpack.dev.config.js +70 -52
- package/lib/configs/webpack.docs.config.js +106 -106
- package/lib/configs/webpack.prod.config.js +95 -75
- package/lib/hooks/docsProptypeHook.js +32 -38
- package/lib/jest/commitedFilesResult.js +103 -74
- package/lib/jest/coverageCollector.js +41 -21
- package/lib/jest/jsonMaker.js +15 -16
- package/lib/jest/preProcessors/cssPreprocessor.js +16 -18
- package/lib/jest/preProcessors/jsPreprocessor.js +3 -5
- package/lib/jest/preProcessors/otherFilesPreprocessor.js +5 -6
- package/lib/jest/result.js +90 -45
- package/lib/jest/run.js +43 -43
- package/lib/jest/setup.js +102 -95
- package/lib/loaderUtils/getCSSLoaders.js +21 -22
- package/lib/loaderUtils/getDevJsLoaders.js +25 -23
- package/lib/loaderUtils/index.js +11 -13
- package/lib/loaders/docsLoader.js +15 -15
- package/lib/loaders/docsPropsLoader.js +14 -17
- package/lib/loaders/fileLoader.js +33 -35
- package/lib/loaders/scriptInstrumentLoader.js +21 -20
- package/lib/loaders/workerLoader.js +136 -0
- package/lib/middlewares/HMRMiddleware.js +54 -45
- package/lib/middlewares/SSTMiddleware.js +8 -5
- package/lib/pluginUtils/getDevPlugins.js +114 -52
- package/lib/pluginUtils/getDocsPlugins.js +25 -29
- package/lib/pluginUtils/getLibraryPlugins.js +8 -10
- package/lib/pluginUtils/getProdPlugins.js +163 -74
- package/lib/pluginUtils/getServerPlugins.js +8 -11
- package/lib/pluginUtils/getUMDCSSPlugins.js +11 -15
- package/lib/pluginUtils/getUMDComponentPlugins.js +11 -15
- package/lib/pluginUtils/index.js +36 -43
- package/lib/plugins/CdnChangePlugin.js +63 -0
- package/lib/plugins/CleanupStatsPlugin.js +18 -32
- package/lib/plugins/CustomAttributePlugin.js +79 -0
- package/lib/plugins/CustomAttributePlugin.md +35 -0
- package/lib/plugins/EFCPlugin.js +185 -0
- package/lib/plugins/I18NInjectIntoIndexPlugin.js +118 -52
- package/lib/plugins/I18nSplitPlugin/I18nDebugPlugin.js +60 -0
- package/lib/plugins/I18nSplitPlugin/I18nDependency.js +44 -0
- package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +266 -0
- package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +183 -0
- package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +100 -0
- package/lib/plugins/I18nSplitPlugin/I18nSplit.md +86 -0
- package/lib/plugins/I18nSplitPlugin/README.md +25 -0
- package/lib/plugins/I18nSplitPlugin/index.js +185 -0
- package/lib/plugins/I18nSplitPlugin/utils/collectI18nKeys.js +64 -0
- package/lib/plugins/I18nSplitPlugin/utils/getI18nFileUrlPathTemplate.js +13 -0
- package/lib/plugins/I18nSplitPlugin/utils/getI18nKeysFormModules.js +26 -0
- package/lib/plugins/I18nSplitPlugin/utils/hashUtils.js +40 -0
- package/lib/plugins/I18nSplitPlugin/utils/index.js +31 -0
- package/lib/plugins/I18nSplitPlugin/utils/propertiesUtils.js +112 -0
- package/lib/plugins/ManifestPlugin.js +52 -63
- package/lib/plugins/ModuleStatsPlugin.js +83 -173
- package/lib/plugins/OptimizeJSPlugin.js +24 -41
- package/lib/plugins/PublicPathCallbackPlugin.js +42 -116
- package/lib/plugins/PublicPathChangePlugin.js +175 -284
- package/lib/plugins/ReportGeneratePlugin.js +150 -151
- package/lib/plugins/ResourceHintsPlugin.js +53 -35
- package/lib/plugins/ScriptInstrumentPlugin.js +22 -37
- package/lib/plugins/ServiceWorkerPlugin.js +81 -57
- package/lib/plugins/ShadowDOMSupportPlugin.js +153 -234
- package/lib/plugins/SourceMapHookPlugin.js +21 -33
- package/lib/plugins/TPHashMappingPlugin.js +67 -0
- package/lib/plugins/UglifyCSSPlugin.js +23 -30
- package/lib/plugins/UnusedFilesFindPlugin.js +137 -152
- package/lib/plugins/index.js +100 -91
- package/lib/plugins/webpackwatchrunplugin.js +18 -30
- package/lib/postcss-plugins/ExcludeRTLPlugin.js +14 -17
- package/lib/schemas/index.js +336 -81
- package/lib/servers/clusterHubServer.js +22 -26
- package/lib/servers/docsServer.js +3 -5
- package/lib/servers/docsServerCore.js +84 -91
- package/lib/servers/helpServer.js +19 -21
- package/lib/servers/impactServer.js +99 -92
- package/lib/servers/mockserver.js +24 -24
- package/lib/servers/scrServer.js +78 -98
- package/lib/servers/server.js +101 -122
- package/lib/servers/ssServer.js +63 -61
- package/lib/sh/pre-commit.sh +34 -34
- package/lib/sh/reportPublish.sh +45 -46
- package/lib/templates/CoverageScriptTemplate.js +45 -18
- package/lib/templates/WMSTemplate.js +17 -18
- package/lib/templates/linterConstant.js +6 -4
- package/lib/utils/babelPresets.js +12 -5
- package/lib/utils/buildstats.html +148 -148
- package/lib/utils/clean.js +12 -11
- package/lib/utils/copy.js +12 -34
- package/lib/utils/copyTimezones.js +9 -16
- package/lib/utils/createEventStream.js +24 -19
- package/lib/utils/cssClassNameGenerate.js +44 -73
- package/lib/utils/cssURLReplacer.js +60 -54
- package/lib/utils/dependencyPostPublish.js +20 -19
- package/lib/utils/fileUtils.js +66 -54
- package/lib/utils/folderIterator.js +20 -21
- package/lib/utils/getComponents.js +70 -27
- package/lib/utils/getCurrentBranch.js +11 -17
- package/lib/utils/getDependenciesImpactList.js +114 -187
- package/lib/utils/getHash.js +9 -13
- package/lib/utils/getIp.js +9 -9
- package/lib/utils/getOptions.js +26 -29
- package/lib/utils/getServerURL.js +19 -10
- package/lib/utils/index.js +147 -126
- package/lib/utils/init.js +2 -2
- package/lib/utils/initPreCommitHook.js +40 -32
- package/lib/utils/jsonHelper.js +37 -21
- package/lib/utils/lint/addScripts.js +27 -0
- package/lib/utils/lint/checkExistingConfig.js +67 -0
- package/lib/utils/lint/copyConfigs.js +24 -0
- package/lib/utils/lint/index.js +54 -0
- package/lib/utils/lint/lintScripts.js +11 -0
- package/lib/utils/lint/lintSetup.js +31 -0
- package/lib/utils/lint/lintStagedPreCommitHook.js +7 -0
- package/lib/utils/lint/question.js +30 -0
- package/lib/utils/lintReporter.js +70 -56
- package/lib/utils/mailSender.js +12 -27
- package/lib/utils/pullOrigin.js +21 -18
- package/lib/utils/reinstallDependencies.js +76 -85
- package/lib/utils/removeAttributes.js +25 -23
- package/lib/utils/repoClone.js +47 -45
- package/lib/utils/request.js +64 -77
- package/lib/utils/resultSchema.json +73 -73
- package/lib/utils/rtl.js +22 -29
- package/lib/utils/setEnvVariables.js +5 -6
- package/lib/utils/ssTestHack.js +21 -19
- package/lib/utils/switchBranch.js +21 -20
- package/lib/utils/urlConcat.js +22 -0
- package/package.json +141 -136
- package/templates/app/.eslintrc.js +140 -140
- package/templates/app/README.md +12 -12
- package/templates/app/app/index.html +24 -24
- package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
- package/templates/app/app/properties/i18nkeys.json +3 -3
- package/templates/app/docs/all.html +69 -69
- package/templates/app/mockapi/index.js +18 -18
- package/templates/app/package.json +37 -37
- package/templates/app/src/actions/SampleActions/index.js +37 -37
- package/templates/app/src/actions/index.js +65 -65
- package/templates/app/src/appUrls.js +19 -19
- package/templates/app/src/components/Alert/Alert.js +134 -134
- package/templates/app/src/components/Alert/Alert.module.css +79 -79
- package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
- package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
- package/templates/app/src/components/Sample/Sample.module.css +11 -11
- package/templates/app/src/components/Sample/SampleList.js +61 -61
- package/templates/app/src/components/Slider/Slider.css +41 -41
- package/templates/app/src/components/Slider/Slider.js +55 -55
- package/templates/app/src/containers/AlertContainer/index.js +15 -15
- package/templates/app/src/containers/AppContainer/index.js +96 -96
- package/templates/app/src/containers/AppContainer/index.module.css +27 -27
- package/templates/app/src/containers/CustomMatch/index.js +65 -65
- package/templates/app/src/containers/DevTools/index.js +10 -10
- package/templates/app/src/containers/Header/index.js +67 -67
- package/templates/app/src/containers/Header/index.module.css +43 -43
- package/templates/app/src/containers/Redirect/index.js +63 -63
- package/templates/app/src/containers/Redirector/index.js +47 -47
- package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
- package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
- package/templates/app/src/historyChange.js +5 -5
- package/templates/app/src/index.html +10 -10
- package/templates/app/src/index.js +24 -24
- package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
- package/templates/app/src/reducers/alertData.js +11 -11
- package/templates/app/src/reducers/index.js +6 -6
- package/templates/app/src/reducers/samples.js +19 -19
- package/templates/app/src/store/configureStore.dev.js +51 -51
- package/templates/app/src/store/configureStore.js +5 -5
- package/templates/app/src/store/configureStore.prod.js +26 -26
- package/templates/app/src/util/Common.js +5 -5
- package/templates/app/src/util/RequestAPI.js +132 -132
- package/templates/docs/all.html +249 -249
- package/templates/docs/component.html +178 -178
- package/templates/docs/components.html +221 -221
- package/templates/docs/css/b.min.css +6 -6
- package/templates/docs/css/component.css +42 -42
- package/templates/docs/css/componentTest.css +6 -6
- package/templates/docs/css/hopscotch.css +585 -585
- package/templates/docs/css/style.css +1022 -1022
- package/templates/docs/index.html +1493 -1493
- package/templates/docs/js/active-line.js +72 -72
- package/templates/docs/js/b.min.js +7 -7
- package/templates/docs/js/codemirror.js +9680 -9680
- package/templates/docs/js/designTokens.js +334 -334
- package/templates/docs/js/j.min.js +4 -4
- package/templates/docs/js/javascript.js +874 -874
- package/templates/docs/js/matchbrackets.js +145 -145
package/README.md
CHANGED
@@ -1,491 +1,636 @@
|
|
1
|
-
# React CLI
|
2
|
-
|
3
|
-
A CLI tool for build modern web application and libraries
|
4
|
-
|
5
|
-
#0.0.1-
|
6
|
-
|
7
|
-
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
-
|
20
|
-
-
|
21
|
-
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
-
|
31
|
-
-
|
32
|
-
|
33
|
-
#0.0.1-beta.
|
34
|
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
|
38
|
-
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
|
62
|
-
#0.0.1-beta.
|
63
|
-
|
64
|
-
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
-
|
72
|
-
|
73
|
-
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
-
|
79
|
-
|
80
|
-
#0.0.1-beta.
|
81
|
-
|
82
|
-
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
-
|
88
|
-
|
89
|
-
#0.0.1-beta.
|
90
|
-
|
91
|
-
-
|
92
|
-
|
93
|
-
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
-
|
108
|
-
|
109
|
-
-
|
110
|
-
|
111
|
-
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
|
124
|
-
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
-
|
131
|
-
|
132
|
-
#0.0.1-beta.
|
133
|
-
|
134
|
-
-
|
135
|
-
|
136
|
-
#0.0.1-beta.
|
137
|
-
|
138
|
-
-
|
139
|
-
|
140
|
-
#0.0.1-beta.
|
141
|
-
|
142
|
-
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
-
|
149
|
-
|
150
|
-
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
-
|
189
|
-
|
190
|
-
#0.0.1-beta.
|
191
|
-
|
192
|
-
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
-
|
235
|
-
|
236
|
-
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
-
|
245
|
-
|
246
|
-
#0.0.1-beta.
|
247
|
-
|
248
|
-
-
|
249
|
-
|
250
|
-
#0.0.1-beta.
|
251
|
-
|
252
|
-
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
-
|
262
|
-
|
263
|
-
#0.0.1-beta.
|
264
|
-
|
265
|
-
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
-
|
278
|
-
|
279
|
-
-
|
280
|
-
|
281
|
-
#0.0.1-beta.
|
282
|
-
|
283
|
-
-
|
284
|
-
|
285
|
-
#0.0.1-beta.
|
286
|
-
|
287
|
-
-
|
288
|
-
|
289
|
-
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
-
|
295
|
-
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
-
|
312
|
-
|
313
|
-
#0.0.1-beta.
|
314
|
-
|
315
|
-
-
|
316
|
-
|
317
|
-
#0.0.1-beta.
|
318
|
-
|
319
|
-
-
|
320
|
-
-
|
321
|
-
|
322
|
-
#0.0.1-beta.
|
323
|
-
|
324
|
-
-
|
325
|
-
|
326
|
-
#0.0.1-beta.
|
327
|
-
|
328
|
-
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
-
|
334
|
-
|
335
|
-
#0.0.1-beta.
|
336
|
-
|
337
|
-
-
|
338
|
-
|
339
|
-
#0.0.1-beta.
|
340
|
-
|
341
|
-
-
|
342
|
-
|
343
|
-
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
-
|
353
|
-
|
354
|
-
#0.0.1-beta.
|
355
|
-
|
356
|
-
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
-
|
366
|
-
|
367
|
-
#0.0.1-beta.
|
368
|
-
|
369
|
-
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
-
|
382
|
-
|
383
|
-
#0.0.1-beta.
|
384
|
-
|
385
|
-
-
|
386
|
-
|
387
|
-
#0.0.1-beta.
|
388
|
-
|
389
|
-
-
|
390
|
-
|
391
|
-
#0.0.1-beta.
|
392
|
-
|
393
|
-
-
|
394
|
-
|
395
|
-
#0.0.1-beta.
|
396
|
-
|
397
|
-
-
|
398
|
-
|
399
|
-
#0.0.1-beta.
|
400
|
-
|
401
|
-
-
|
402
|
-
|
403
|
-
#0.0.1-beta.
|
404
|
-
|
405
|
-
-
|
406
|
-
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
-
|
413
|
-
|
414
|
-
-
|
415
|
-
|
416
|
-
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
-
|
421
|
-
|
422
|
-
-
|
423
|
-
-
|
424
|
-
-
|
425
|
-
|
426
|
-
#0.0.1-beta.
|
427
|
-
|
428
|
-
-
|
429
|
-
|
430
|
-
-
|
431
|
-
|
432
|
-
-
|
433
|
-
|
434
|
-
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
-
|
453
|
-
|
454
|
-
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
-
|
459
|
-
|
460
|
-
-
|
461
|
-
|
462
|
-
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
-
|
476
|
-
|
477
|
-
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
-
|
487
|
-
-
|
488
|
-
-
|
489
|
-
|
490
|
-
-
|
491
|
-
|
1
|
+
# React CLI
|
2
|
+
|
3
|
+
A CLI tool for build modern web application and libraries
|
4
|
+
|
5
|
+
# 0.0.1-betaa.138.1
|
6
|
+
- new feature added for custom extra attribute for dynamically added tags by webpack.
|
7
|
+
- To enable this feature you need to enable "react-cli" => "app" => "customAttributes" => "enable"
|
8
|
+
- For more [details](https://zgit.csez.zohocorpin.com/zohodesk/react-cli/-/blob/9eea8df14e55584b2114b5e484ca8b751a4ba191/src/plugins/CustomAttributePlugin.md)
|
9
|
+
|
10
|
+
# 0.0.1-beta.138
|
11
|
+
|
12
|
+
- sstest library version updated
|
13
|
+
- unitcase calcluation issues fixed
|
14
|
+
|
15
|
+
|
16
|
+
# 0.0.1-beta.137
|
17
|
+
- Third party css files loading issue fix
|
18
|
+
# 0.0.1-beta.136
|
19
|
+
- eslint support
|
20
|
+
# 0.0.1-beta.135
|
21
|
+
- windows publish issue
|
22
|
+
|
23
|
+
# 0.0.1-beta.134
|
24
|
+
- Build Issue Fix
|
25
|
+
# 0.0.1-beta.133
|
26
|
+
- CDN Changes in I18nSplitPlugin
|
27
|
+
- nonce support added for i18n chunks
|
28
|
+
|
29
|
+
# 0.0.1-beta.132
|
30
|
+
- CDN Changes in EFC Plugin
|
31
|
+
# 0.0.1-beta.131
|
32
|
+
- Added Cdn Change Plugin
|
33
|
+
# 0.0.1-beta.130
|
34
|
+
|
35
|
+
- Babel 7 migration, ES6 build generation config and polyfill removal
|
36
|
+
- CopyPlugin issue fix
|
37
|
+
|
38
|
+
#0.0.1-beta.129
|
39
|
+
|
40
|
+
- Upgraded 'moment' to version 2.29.1 and 'moment-timezone' to version 0.5.32
|
41
|
+
|
42
|
+
# 0.0.1-beta.128
|
43
|
+
|
44
|
+
- Added support to generate hash for the third party files(TPHashMappingPlugin)
|
45
|
+
|
46
|
+
# 0.0.1-beta.127
|
47
|
+
|
48
|
+
- service worker plugin - to recursively add multiple directories (recursive=true)
|
49
|
+
|
50
|
+
# 0.0.1-beta.126
|
51
|
+
|
52
|
+
- issue fix in i18n split plugin
|
53
|
+
|
54
|
+
## expremental versions
|
55
|
+
|
56
|
+
- 0.0.1-beta.121
|
57
|
+
- 0.0.1-beta.122
|
58
|
+
- 0.0.1-beta.123
|
59
|
+
- 0.0.1-beta.124
|
60
|
+
- 0.0.1-beta.125
|
61
|
+
|
62
|
+
# 0.0.1-beta.120
|
63
|
+
|
64
|
+
- issue fix in third party file copying
|
65
|
+
|
66
|
+
## expremental versions
|
67
|
+
|
68
|
+
- 0.0.1-beta.119
|
69
|
+
- 0.0.1-beta.118
|
70
|
+
|
71
|
+
#0.0.1-beta.117
|
72
|
+
|
73
|
+
- createSDkFile otion added for efc
|
74
|
+
- small fix in i18n split plugin
|
75
|
+
|
76
|
+
#0.0.1-beta.116
|
77
|
+
|
78
|
+
- thirdparty package move to build (tpFolder in app config)
|
79
|
+
|
80
|
+
#0.0.1-beta.115
|
81
|
+
|
82
|
+
- Added Web worker support
|
83
|
+
|
84
|
+
#0.0.1-beta.114
|
85
|
+
|
86
|
+
- i18n split based on chunk
|
87
|
+
- to enable i18n chunk spilt you have to add config in you package.json
|
88
|
+
|
89
|
+
#0.0.1-beta.113
|
90
|
+
|
91
|
+
- Upgraded 'fz-i18n' package version to 1.2.0-beta.15
|
92
|
+
|
93
|
+
#0.0.1-beta.112
|
94
|
+
|
95
|
+
- Duplicate Prefetch Request Issue Fixed (Resource Hint Plugin)
|
96
|
+
- Service worker plugin changes
|
97
|
+
|
98
|
+
#0.0.1-beta.111
|
99
|
+
|
100
|
+
- hasRTL, selectorReplace Condition Separated
|
101
|
+
|
102
|
+
#0.0.1-beta.110
|
103
|
+
|
104
|
+
- SplitChunk Order Issue Fixed
|
105
|
+
- https url issue Fixed
|
106
|
+
|
107
|
+
#0.0.1-beta.109
|
108
|
+
|
109
|
+
- @zohodesk/screenshottest package version update (19) and log for the gitlab private api to check the response
|
110
|
+
|
111
|
+
#0.0.1-beta.108
|
112
|
+
|
113
|
+
- @zohodesk/screenshottest package version update (18)
|
114
|
+
|
115
|
+
#0.0.1-beta.107
|
116
|
+
|
117
|
+
- changed component without docs finder added
|
118
|
+
|
119
|
+
#0.0.1-beta.106
|
120
|
+
|
121
|
+
- custom chunk support changes
|
122
|
+
- css absolute url fix
|
123
|
+
|
124
|
+
#0.0.1-beta.105
|
125
|
+
|
126
|
+
- @zohodesk/screenshottest package version update (17) with the issue fix
|
127
|
+
|
128
|
+
#0.0.1-beta.104
|
129
|
+
|
130
|
+
- ModuleStatsPlugin inject false option added to solve the webpack build twice issue
|
131
|
+
|
132
|
+
#0.0.1-beta.103
|
133
|
+
|
134
|
+
- @zohodesk/screenshottest package version update (16) with the issue fix
|
135
|
+
|
136
|
+
#0.0.1-beta.102
|
137
|
+
|
138
|
+
- @zohodesk/screenshottest package version update (15) with the issue fix
|
139
|
+
|
140
|
+
#0.0.1-beta.101
|
141
|
+
|
142
|
+
- 100 changes readme missing
|
143
|
+
- bundle analyser changes
|
144
|
+
|
145
|
+
#0.0.1-beta.100
|
146
|
+
|
147
|
+
- @zohodesk/screenshottest package version update with the issue fix
|
148
|
+
- font public path replace issue for url fonts - fixed
|
149
|
+
|
150
|
+
#0.0.1-beta.99
|
151
|
+
|
152
|
+
- can't publish already published
|
153
|
+
|
154
|
+
#0.0.1-beta.98
|
155
|
+
|
156
|
+
- defer break public path adding regex - fixed
|
157
|
+
|
158
|
+
#0.0.1-beta.97
|
159
|
+
|
160
|
+
- added 'babel-plugin-transform-react-remove-prop-types' in package.json (missed earlier)
|
161
|
+
|
162
|
+
#0.0.1-beta.96
|
163
|
+
|
164
|
+
- html plugin inject option expose and version udpate 4.2.0
|
165
|
+
- src html change i18n removal issue fix
|
166
|
+
- script loading defer added
|
167
|
+
- added babel plugin to remove proptypes
|
168
|
+
|
169
|
+
#0.0.1-beta.95
|
170
|
+
|
171
|
+
- schemas/index.js - issue fix
|
172
|
+
|
173
|
+
#0.0.1-beta.94
|
174
|
+
|
175
|
+
- screenshot test library version update
|
176
|
+
- ssserver issue fix
|
177
|
+
|
178
|
+
#0.0.1-beta.93
|
179
|
+
|
180
|
+
- selector replacer for Help Center usecase
|
181
|
+
- eslint performance plugin
|
182
|
+
- css classname hash selector support for docs
|
183
|
+
- service worker plugin
|
184
|
+
|
185
|
+
#0.0.1-beta.92
|
186
|
+
|
187
|
+
- docs ui fixes and edit mode
|
188
|
+
- @zohodesk/datetimejs version update
|
189
|
+
|
190
|
+
#0.0.1-beta.91
|
191
|
+
|
192
|
+
- repo clone command pull issue fix
|
193
|
+
- docs css change
|
194
|
+
- SSTest package version downgrade
|
195
|
+
|
196
|
+
#0.0.1-beta.90
|
197
|
+
|
198
|
+
- added support for copying Timezone data from @zohodesk/datetimejs
|
199
|
+
- docstool changes
|
200
|
+
|
201
|
+
#0.0.1-beta.89
|
202
|
+
|
203
|
+
- CSP nonce support for initial assets `{{--CSP-nonce}}`
|
204
|
+
- introduced new mode to disable react warns in dev mode (dev-no-warn)
|
205
|
+
- docs ui fix
|
206
|
+
|
207
|
+
#0.0.1-beta.88
|
208
|
+
|
209
|
+
- Impact run and Master seperate during SSTEST
|
210
|
+
- docs changes
|
211
|
+
- filenames and packages addedd in cssHashSelectors option
|
212
|
+
|
213
|
+
#0.0.1-beta.87
|
214
|
+
|
215
|
+
- run screenshot test for impacted components
|
216
|
+
- seperate master from the CI flow with the HBase storage
|
217
|
+
- docs changes
|
218
|
+
- coverage percentage check disabled
|
219
|
+
|
220
|
+
#0.0.1-beta.86
|
221
|
+
|
222
|
+
- exclude without js changes for unittest
|
223
|
+
- express server history fallback refactored
|
224
|
+
|
225
|
+
#0.0.1-beta.85
|
226
|
+
|
227
|
+
- i18n placeholder removal issue fixed
|
228
|
+
- css classname prefix moved to option. default is zd
|
229
|
+
|
230
|
+
#0.0.1-beta.84
|
231
|
+
|
232
|
+
- object spread operator support
|
233
|
+
|
234
|
+
#0.0.1-beta.83
|
235
|
+
|
236
|
+
- eslint report type by flag
|
237
|
+
- unitcase file exclude array issue fix
|
238
|
+
- sstesthack issue fix
|
239
|
+
|
240
|
+
#0.0.1-beta.82
|
241
|
+
|
242
|
+
- eslint impact run enable - completed
|
243
|
+
- devplugin cleanupstats filename import issue fix
|
244
|
+
- coveragecollector return format change
|
245
|
+
|
246
|
+
#0.0.1-beta.81
|
247
|
+
|
248
|
+
- unit test case syntax error issue fix - removed unwanted dependency `css-modules-require-hook`
|
249
|
+
|
250
|
+
#0.0.1-beta.80
|
251
|
+
|
252
|
+
- unitcase filecoverage testpath issue fix
|
253
|
+
- shadowdom support
|
254
|
+
- postpublish and sstest hack script
|
255
|
+
- dependencies impact list
|
256
|
+
- can change runtime chunk's character
|
257
|
+
- font preload added
|
258
|
+
|
259
|
+
#0.0.1-beta.79
|
260
|
+
|
261
|
+
- unitcase filecoverage added and also codecoverage with dependencies spec added
|
262
|
+
|
263
|
+
#0.0.1-beta.78
|
264
|
+
|
265
|
+
- components and dot library's stats added with module stats
|
266
|
+
- Mini css extract plugin's unwanted logs removed
|
267
|
+
- runtime chunk added in dev mode
|
268
|
+
- nodemon windows issue fix
|
269
|
+
- testinfo failure missing while can't get coverage
|
270
|
+
- performance eslint plugin added and normalizer moved under zohodesk
|
271
|
+
|
272
|
+
#0.0.1-beta.77
|
273
|
+
|
274
|
+
- @zohodesk/eslint-plugin-zsecurity version update
|
275
|
+
- git pull origin with branch name while screenshot test after the branch switch
|
276
|
+
|
277
|
+
#0.0.1-beta.76
|
278
|
+
|
279
|
+
- breaking issue fix from last version ( prod config issue )
|
280
|
+
|
281
|
+
#0.0.1-beta.75
|
282
|
+
|
283
|
+
- sstest - reinstall dependencies after switch branch
|
284
|
+
|
285
|
+
#0.0.1-beta.74
|
286
|
+
|
287
|
+
- docs provider support (Component.\_provider)
|
288
|
+
|
289
|
+
#0.0.1-beta.73
|
290
|
+
|
291
|
+
#0.0.1-beta.72
|
292
|
+
|
293
|
+
- run eslint security rules option enable
|
294
|
+
- add the reportURL with the result.json file
|
295
|
+
- mock server post api issue fix
|
296
|
+
|
297
|
+
#0.0.1-beta.71
|
298
|
+
|
299
|
+
- publicpath hard coding while flatten build issue fix
|
300
|
+
|
301
|
+
#0.0.1-beta.70
|
302
|
+
|
303
|
+
- css class compression flag enable
|
304
|
+
- docs src URL update
|
305
|
+
|
306
|
+
#0.0.1-beta.69
|
307
|
+
|
308
|
+
- babel-plugin-transform-dynamic-import library with webpack.docs.config.js for docs service
|
309
|
+
- babel-lodash plugin fix with getdevplugin
|
310
|
+
- cursor blink issue fix for sstest
|
311
|
+
- in result.json unitcase coverage verified boolean added
|
312
|
+
|
313
|
+
#0.0.1-beta.68
|
314
|
+
|
315
|
+
- rtl ignore [dir] changes
|
316
|
+
|
317
|
+
#0.0.1-beta.67
|
318
|
+
|
319
|
+
- babel-plugin-transform-dynamic-import library added with package.json
|
320
|
+
- schema change with hostname cli option s
|
321
|
+
|
322
|
+
#0.0.1-beta.66
|
323
|
+
|
324
|
+
- mockport hard coded issue fix
|
325
|
+
|
326
|
+
#0.0.1-beta.65
|
327
|
+
|
328
|
+
- window rtl build issue fix
|
329
|
+
- separate rtl build support added like react-cli rtl ./src ./lib
|
330
|
+
|
331
|
+
#0.0.1-beta.64
|
332
|
+
|
333
|
+
- postcss-rtl issue temp fix so move to @zohodesk/postcss-rtl
|
334
|
+
|
335
|
+
#0.0.1-beta.63
|
336
|
+
|
337
|
+
- LTR & RTL support added
|
338
|
+
|
339
|
+
#0.0.1-beta.62
|
340
|
+
|
341
|
+
- componentTest.css entry in components.html
|
342
|
+
|
343
|
+
#0.0.1-beta.60
|
344
|
+
|
345
|
+
- SSTMiddleware hook added for ssserver
|
346
|
+
- remove some unwanted class in components.css
|
347
|
+
- componentTest.css added with common animation break css rules
|
348
|
+
|
349
|
+
#0.0.1-beta.59
|
350
|
+
|
351
|
+
- vendor files exclude from app
|
352
|
+
- since the chunk hash issue, moduleIds configured as named
|
353
|
+
|
354
|
+
#0.0.1-beta.58
|
355
|
+
|
356
|
+
- Push result json with the report zip
|
357
|
+
- screenshot-test library Version update
|
358
|
+
|
359
|
+
#0.0.1-beta.57
|
360
|
+
|
361
|
+
- vendor chunk split issue fix
|
362
|
+
|
363
|
+
#0.0.1-beta.56
|
364
|
+
|
365
|
+
- css ordering issue fix
|
366
|
+
|
367
|
+
#0.0.1-beta.55
|
368
|
+
|
369
|
+
- prod build performance changes
|
370
|
+
- css duplication issue fix
|
371
|
+
- root chunk splitting logic change
|
372
|
+
|
373
|
+
#0.0.1-beta.54
|
374
|
+
|
375
|
+
- increased css hash size 5 to 10
|
376
|
+
|
377
|
+
#0.0.1-beta.53
|
378
|
+
|
379
|
+
- generate json file for all the test results during test run
|
380
|
+
- sstest version update
|
381
|
+
- some issue fixes
|
382
|
+
|
383
|
+
#0.0.1-beta.52
|
384
|
+
|
385
|
+
- template src folder missed issue fix because of npmignore all src folder
|
386
|
+
|
387
|
+
#0.0.1-beta.51
|
388
|
+
|
389
|
+
- template app updated with redux and router by kumaresan(thala)
|
390
|
+
|
391
|
+
#0.0.1-beta.50
|
392
|
+
|
393
|
+
- window machine css unique issue fix
|
394
|
+
|
395
|
+
#0.0.1-beta.49
|
396
|
+
|
397
|
+
- dev css unique issue fix
|
398
|
+
|
399
|
+
#0.0.1-beta.48
|
400
|
+
|
401
|
+
- telephony support css unique changes
|
402
|
+
|
403
|
+
#0.0.1-beta.47
|
404
|
+
|
405
|
+
- git pull during the branch switch in ssserver
|
406
|
+
- common util file for pull and switch the branches for both git and hg
|
407
|
+
|
408
|
+
#0.0.1-beta.46
|
409
|
+
|
410
|
+
- ogg file support and tmpl file support
|
411
|
+
|
412
|
+
#0.0.1-beta.45
|
413
|
+
|
414
|
+
- checkout branch with force during sstest
|
415
|
+
|
416
|
+
#0.0.1-beta.44
|
417
|
+
|
418
|
+
- sstest master trigger issue fix
|
419
|
+
|
420
|
+
#0.0.1-beta.43
|
421
|
+
|
422
|
+
- get component object from docs server by http protocol during sstest
|
423
|
+
- reach docs server by the IP address of the host.
|
424
|
+
- get the current branch name by args
|
425
|
+
|
426
|
+
#0.0.1-beta.42
|
427
|
+
|
428
|
+
- className ssTest added and screenshot test version update
|
429
|
+
|
430
|
+
#0.0.1-beta.41
|
431
|
+
|
432
|
+
- i18n replace issue fix
|
433
|
+
|
434
|
+
- some css changes related to above
|
435
|
+
- screenshottest version update
|
436
|
+
|
437
|
+
#0.0.1-beta.40
|
438
|
+
|
439
|
+
- SSTMiddleware added to get hook from webpack build process to start sstest
|
440
|
+
- run unit test for commited files except the spec file name from name list
|
441
|
+
- publicpath added for i18n js files
|
442
|
+
|
443
|
+
#0.0.1-beta.39
|
444
|
+
|
445
|
+
- prod build check issue fix
|
446
|
+
|
447
|
+
#0.0.1-beta.38
|
448
|
+
|
449
|
+
- all unitcase runs only with master option removed
|
450
|
+
- prod mode in dev setup flag issue fix
|
451
|
+
|
452
|
+
#0.0.1-beta.37
|
453
|
+
|
454
|
+
- removed hash for index.html and add publicpath when run prod mode in dev machine
|
455
|
+
- screenshot version updated
|
456
|
+
- docs build log issue fix
|
457
|
+
|
458
|
+
#0.0.1-beta.36
|
459
|
+
|
460
|
+
- reportpublish sh file report generation even if any breakages in test scripts
|
461
|
+
|
462
|
+
#0.0.1-beta.35
|
463
|
+
|
464
|
+
- full run of spec fils only for master option added
|
465
|
+
- reportpublish sh for screenshot test report template issue fix
|
466
|
+
|
467
|
+
#0.0.1-beta.34
|
468
|
+
|
469
|
+
- monitor mockserver changes without affecting static server
|
470
|
+
|
471
|
+
#0.0.1-beta.33
|
472
|
+
|
473
|
+
- mail sent issue - fix
|
474
|
+
|
475
|
+
#0.0.1-beta.32
|
476
|
+
|
477
|
+
- ssl cert update
|
478
|
+
- webpack-bundle-analyzer version update (because of npm audit fix)
|
479
|
+
|
480
|
+
#0.0.1-beta.31
|
481
|
+
|
482
|
+
- reportpublicpath plugin rename issue fix
|
483
|
+
|
484
|
+
#0.0.1-beta.30
|
485
|
+
|
486
|
+
- report generate plugin rename
|
487
|
+
- schema changes for sstest (sstest_remotebranch => sstest_referbranch)
|
488
|
+
- reportpublish sh update
|
489
|
+
|
490
|
+
#0.0.1-beta.29
|
491
|
+
|
492
|
+
- screenshot version updated
|
493
|
+
- unit test case commit coverage issue fix
|
494
|
+
|
495
|
+
#0.0.1-beta.28
|
496
|
+
|
497
|
+
- Unitcase coverage for changed files issue fix
|
498
|
+
|
499
|
+
#0.0.1-beta.27
|
500
|
+
|
501
|
+
- prod build size and hash tracking report added
|
502
|
+
|
503
|
+
#0.0.1-beta.26
|
504
|
+
|
505
|
+
- inlined assets and css assets publicpath collide issue fix
|
506
|
+
|
507
|
+
#0.0.1-beta.25
|
508
|
+
|
509
|
+
- inline image public path issue fix
|
510
|
+
- docs css change for sstest
|
511
|
+
|
512
|
+
#0.0.1-beta.24
|
513
|
+
|
514
|
+
- removed source map generation by default
|
515
|
+
|
516
|
+
#0.0.1-beta.23
|
517
|
+
|
518
|
+
- windows path issue in i18I18NInjectIntoIndexPlugin plugin
|
519
|
+
|
520
|
+
#0.0.1-beta.22
|
521
|
+
|
522
|
+
- unusedfilesplugin issue fixed and print valid info
|
523
|
+
|
524
|
+
#0.0.1-beta.21
|
525
|
+
|
526
|
+
- production build hash details exported in index html
|
527
|
+
|
528
|
+
#0.0.1-beta.20
|
529
|
+
|
530
|
+
- list the name of un documented component file name
|
531
|
+
|
532
|
+
#0.0.1-beta.19
|
533
|
+
|
534
|
+
- publicpath callback plugin added
|
535
|
+
|
536
|
+
#0.0.1-beta.18
|
537
|
+
|
538
|
+
- production build issue fix
|
539
|
+
|
540
|
+
#0.0.1-beta.17
|
541
|
+
|
542
|
+
- redux version downgraded
|
543
|
+
|
544
|
+
#0.0.1-beta.16
|
545
|
+
|
546
|
+
- Babel env and react issue fix
|
547
|
+
|
548
|
+
#0.0.1-beta.15
|
549
|
+
|
550
|
+
- Few issue fixes
|
551
|
+
- Webpack Manifest Plugin revamped
|
552
|
+
- @zohodesk/screenshot-test package added
|
553
|
+
|
554
|
+
#0.0.1-beta.14
|
555
|
+
|
556
|
+
- Removed minify option in css-loader config
|
557
|
+
- Removed optimize-css-assets-webpack-plugin
|
558
|
+
- Added UglifyCSS webpack plugin
|
559
|
+
- Packages version up to dated expect babel-loader
|
560
|
+
- Docs umd build issue fixed
|
561
|
+
- CSS public path in all configs
|
562
|
+
|
563
|
+
#0.0.1-beta.13
|
564
|
+
|
565
|
+
- Breaking issues fix
|
566
|
+
- Add eslint config file in project root folder
|
567
|
+
- Removed hot module and SSR concepts
|
568
|
+
- Public Path change plugin revamp
|
569
|
+
- Replaced style-loader with MiniCssExtractPlugin for overall
|
570
|
+
|
571
|
+
#0.0.1-beta.12
|
572
|
+
|
573
|
+
- ResourceHints Plugin added
|
574
|
+
- able to set public paths for various types of assets
|
575
|
+
- provided few cli options for existing options
|
576
|
+
- change ext of files while copy
|
577
|
+
- cache directory issue fix in dev mode
|
578
|
+
- script instrument loader added
|
579
|
+
- eslint windows machine issue fix
|
580
|
+
|
581
|
+
#0.0.1-beta.11
|
582
|
+
|
583
|
+
- css module extension changed to .modules.css from .mcss
|
584
|
+
|
585
|
+
#0.0.1-beta.10
|
586
|
+
|
587
|
+
- css module related changes
|
588
|
+
- unit test case breaking issue fix
|
589
|
+
|
590
|
+
#0.0.1-beta.9
|
591
|
+
|
592
|
+
- dynamic import support
|
593
|
+
- unit test case issue fix
|
594
|
+
|
595
|
+
#0.0.1-beta.8
|
596
|
+
|
597
|
+
- major issue fixes - previous version issues
|
598
|
+
- eslint new rules added
|
599
|
+
- reverted babel exclude option
|
600
|
+
|
601
|
+
#0.0.1-beta.7
|
602
|
+
|
603
|
+
- optionally attributes removal - prod mode
|
604
|
+
- pre-commit issue fixed
|
605
|
+
- eslint fix option added
|
606
|
+
- used exclude instead of include in babel loader
|
607
|
+
- option lookup issue fixed
|
608
|
+
|
609
|
+
#0.0.1-beta.6
|
610
|
+
|
611
|
+
- complext proptypes support for docs
|
612
|
+
|
613
|
+
#0.0.1-beta.5
|
614
|
+
|
615
|
+
- docs slowness issue fix
|
616
|
+
- jest update issue fix
|
617
|
+
|
618
|
+
#0.0.1-beta.4
|
619
|
+
|
620
|
+
- css chunk related changes
|
621
|
+
- manifest json related changes
|
622
|
+
- css bundle issue fixed
|
623
|
+
|
624
|
+
#0.0.1-beta.3
|
625
|
+
|
626
|
+
- slowness issue fixed
|
627
|
+
- efc build issue fixed
|
628
|
+
|
629
|
+
0.0.1-beta.2 changes
|
630
|
+
|
631
|
+
- docs changes
|
632
|
+
- precommit hook issue fix
|
633
|
+
- compression support
|
634
|
+
- prod string error fix
|
635
|
+
- efc build support
|
636
|
+
- single style tag support
|