@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.
- package/.eslintignore +7 -7
- package/.eslintrc.js +180 -180
- package/.prettierrc +6 -6
- package/Changelog.md +1019 -1019
- package/README.md +1293 -1244
- package/bin/cli.js +497 -497
- package/docs/ComposeMinification.md +13 -13
- package/docs/CustomChunks.md +29 -26
- package/docs/DevServerPort.md +39 -39
- package/docs/DevStart.md +18 -18
- package/docs/HoverActive.md +12 -12
- package/docs/InstallNode.md +28 -28
- package/docs/MarkdownParser.md +18 -0
- package/docs/ReactLive.md +13 -13
- package/docs/SelectorWeight.md +8 -8
- package/docs/TODOS.md +10 -10
- package/docs/ValueReplacer.md +60 -60
- package/docs/VariableConversion.md +729 -729
- package/docs/patternFiltering.md +56 -56
- package/docs/warnings_while_install.txt +35 -35
- package/files/eslintrc.js +62 -62
- package/files/prettierrc.js +3 -3
- package/lib/common/splitChunks.js +65 -45
- package/lib/common/testPattern.js +9 -9
- package/lib/configs/webpack.css.umd.config.js +4 -4
- package/lib/configs/webpack.dev.config.js +24 -3
- package/lib/configs/webpack.docs.config.js +22 -3
- package/lib/configs/webpack.impact.config.js +4 -2
- package/lib/configs/webpack.prod.config.js +6 -3
- package/lib/deprecationLogger.js +41 -0
- package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
- package/lib/loaderUtils/getCSSLoaders.js +77 -56
- package/lib/loaders/__test__/markdownLoader.spec.js +145 -0
- package/lib/loaders/docsLoader.js +3 -0
- package/lib/loaders/markdownLoader.js +71 -0
- package/lib/loaders/workerLoader.js +9 -9
- package/lib/pluginUtils/getDevPlugins.js +8 -7
- package/lib/pluginUtils/getProdPlugins.js +6 -6
- package/lib/plugins/CustomAttributePlugin.md +35 -35
- package/lib/plugins/EFCPlugin.md +6 -6
- package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
- package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
- package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
- package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
- package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
- package/lib/plugins/I18nSplitPlugin/README.md +25 -25
- package/lib/plugins/I18nSplitPlugin/index.js +57 -57
- package/lib/plugins/ResourceHintsPlugin.js +30 -20
- package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
- package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
- package/lib/plugins/SelectorPlugin.js +29 -29
- package/lib/plugins/ServiceWorkerPlugin.js +9 -9
- package/lib/plugins/TPHashMappingPlugin.js +4 -4
- package/lib/plugins/VariableConversionCollector.js +59 -59
- package/lib/plugins/utils/fileHandling.js +35 -42
- package/lib/plugins/variableConvertorUtils.js +9 -9
- package/lib/postcss-plugins/RTLSplitPlugin.js +10 -10
- package/lib/postcss-plugins/__test__/test1Input.css +38 -38
- package/lib/postcss-plugins/__test__/test1Output.css +38 -38
- package/lib/postcss-plugins/hoverActivePlugin.js +3 -3
- package/lib/schemas/index.js +23 -36
- package/lib/sh/pre-commit.sh +34 -34
- package/lib/sh/reportPublish.sh +45 -45
- package/lib/utils/buildstats.html +148 -148
- package/lib/utils/cssClassNameGenerate.js +13 -13
- package/lib/utils/deprecationSupport.js +144 -0
- package/lib/utils/getOptions.js +18 -78
- package/lib/utils/resultSchema.json +73 -73
- package/npm-shrinkwrap.json +33393 -33393
- package/npm8.md +9 -9
- package/package.json +123 -122
- package/postpublish.js +8 -8
- package/result.json +1 -0
- 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 +250 -249
- package/templates/docs/component.html +179 -178
- package/templates/docs/components.html +222 -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/markdown.css +202 -0
- package/templates/docs/css/style.css +1022 -1022
- package/templates/docs/impactReportTemplate.html +154 -154
- package/templates/docs/index.html +1502 -1501
- 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/unittest/index.html +37 -0
|
@@ -6,15 +6,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.isFileNameMatchingPattern = isFileNameMatchingPattern;
|
|
7
7
|
exports.isFileNameMatchingPluginPattern = isFileNameMatchingPluginPattern;
|
|
8
8
|
|
|
9
|
-
var _windowsModification = require("../../loaderUtils/windowsModification");
|
|
10
|
-
|
|
11
9
|
var _ignore = _interopRequireDefault(require("ignore"));
|
|
12
10
|
|
|
13
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
12
|
|
|
15
13
|
const path = require('path');
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
const aliasNames = {
|
|
18
16
|
valueReplacer: 'postcss-value-replacer',
|
|
19
17
|
selectorReplace: 'postcss-selector-replace-new',
|
|
20
18
|
hasRTL: 'postcss-rtl',
|
|
@@ -23,10 +21,10 @@ let aliasNames = {
|
|
|
23
21
|
cssVariableReplacement: 'postcss-variable-report',
|
|
24
22
|
composeMinification: 'postcss-compose-plugin'
|
|
25
23
|
};
|
|
26
|
-
/*
|
|
27
|
-
|
|
28
|
-
unique scenario
|
|
29
|
-
|
|
24
|
+
/*
|
|
25
|
+
|
|
26
|
+
unique scenario
|
|
27
|
+
|
|
30
28
|
*/
|
|
31
29
|
// export function filterFileCssUniqueness(filename, filterObj) {
|
|
32
30
|
// let rootDir = 'supportapp';
|
|
@@ -48,48 +46,43 @@ unique scenario
|
|
|
48
46
|
function isFileNameMatchingPattern({
|
|
49
47
|
filename,
|
|
50
48
|
filterObject,
|
|
51
|
-
plugins
|
|
49
|
+
plugins,
|
|
50
|
+
order
|
|
52
51
|
}) {
|
|
52
|
+
const pluginObj = {};
|
|
53
|
+
plugins.forEach(p => {
|
|
54
|
+
pluginObj[p.postcssPlugin] = p;
|
|
55
|
+
});
|
|
53
56
|
const finalPlugins = [];
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
order.forEach(key => {
|
|
58
|
+
const p = pluginObj[aliasNames[key]];
|
|
59
|
+
const pluginSpecificFilter = filterObject[key];
|
|
60
|
+
|
|
61
|
+
if (!pluginSpecificFilter || pluginSpecificFilter.length === 0) {
|
|
62
|
+
finalPlugins.push(p);
|
|
63
|
+
} else {
|
|
64
|
+
// eslint-disable-next-line no-use-before-define
|
|
65
|
+
const isMatching = isFilePathMatchingPattern(filename, pluginSpecificFilter);
|
|
66
|
+
|
|
67
|
+
if (isMatching) {
|
|
68
|
+
finalPlugins.push(p);
|
|
64
69
|
}
|
|
65
|
-
}
|
|
66
|
-
});
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
return finalPlugins;
|
|
73
|
+
}
|
|
67
74
|
|
|
68
|
-
|
|
75
|
+
function isFilePathMatchingPattern(filePath, patterns) {
|
|
76
|
+
const ig = (0, _ignore.default)({
|
|
77
|
+
allowRelativePaths: true
|
|
78
|
+
}).add(patterns);
|
|
79
|
+
return ig.ignores(filePath);
|
|
69
80
|
}
|
|
70
81
|
|
|
71
82
|
function isFileNameMatchingPluginPattern({
|
|
72
83
|
filename,
|
|
73
|
-
filterArr
|
|
74
|
-
|
|
84
|
+
filterArr
|
|
75
85
|
}) {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
// const regex = `^(.+?)${rootDir}?\\\\`;
|
|
79
|
-
// console.log(plugin);
|
|
80
|
-
|
|
81
|
-
const newFilename = path.relative(path.parse(process.cwd()).base, filename); // const newFilename = windowsModificationFile(filename).replace(
|
|
82
|
-
// new RegExp(regex, 'gi'),
|
|
83
|
-
// ''
|
|
84
|
-
// );
|
|
85
|
-
|
|
86
|
-
const ig = (0, _ignore.default)({
|
|
87
|
-
allowRelativePaths: true
|
|
88
|
-
}).add(filterArr);
|
|
89
|
-
|
|
90
|
-
if (!ig.ignores(newFilename)) {
|
|
91
|
-
include = false;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
return include;
|
|
86
|
+
const newFilename = path.relative(path.parse(process.cwd()).base, filename);
|
|
87
|
+
return isFilePathMatchingPattern(newFilename, filterArr);
|
|
95
88
|
}
|
|
@@ -12,15 +12,15 @@ var _classHandling = require("./utils/classHandling");
|
|
|
12
12
|
const ignoreVals = ['--zd_size', '--zd_font_size', '--size', '--size_']; // const avoidProps = [];
|
|
13
13
|
// -- is issue IO --
|
|
14
14
|
|
|
15
|
-
/*
|
|
16
|
-
issues eg :
|
|
17
|
-
issues = ['--zd_size', '--zd_font_size', '--size', '--size_'];
|
|
18
|
-
input :
|
|
19
|
-
--zd_size
|
|
20
|
-
output :
|
|
21
|
-
true
|
|
22
|
-
comment :
|
|
23
|
-
do not execute when --zd_size comes as prop
|
|
15
|
+
/*
|
|
16
|
+
issues eg :
|
|
17
|
+
issues = ['--zd_size', '--zd_font_size', '--size', '--size_'];
|
|
18
|
+
input :
|
|
19
|
+
--zd_size
|
|
20
|
+
output :
|
|
21
|
+
true
|
|
22
|
+
comment :
|
|
23
|
+
do not execute when --zd_size comes as prop
|
|
24
24
|
*/
|
|
25
25
|
|
|
26
26
|
exports.ignoreVals = ignoreVals;
|
|
@@ -37,11 +37,11 @@ function selectorMinifySameDir(selector, direction) {
|
|
|
37
37
|
const regex = getRegex(direction);
|
|
38
38
|
return selector.replace(regex, '').trim();
|
|
39
39
|
}
|
|
40
|
-
/**
|
|
41
|
-
* this funtion will remove given rule,
|
|
42
|
-
* if given selector and it's previous sibiling rule selector are same
|
|
43
|
-
* current rule properties will move to previous sibiling rule.
|
|
44
|
-
* @param {Rule} rule current rule
|
|
40
|
+
/**
|
|
41
|
+
* this funtion will remove given rule,
|
|
42
|
+
* if given selector and it's previous sibiling rule selector are same
|
|
43
|
+
* current rule properties will move to previous sibiling rule.
|
|
44
|
+
* @param {Rule} rule current rule
|
|
45
45
|
*/
|
|
46
46
|
|
|
47
47
|
|
|
@@ -56,11 +56,11 @@ function mergeIfSameSelector(rule) {
|
|
|
56
56
|
rule.remove();
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
/**
|
|
60
|
-
* this funtion will remove given rule,
|
|
61
|
-
* if given selector and it's previous sibiling rule selector are same
|
|
62
|
-
* current rule properties will move to previous sibiling rule.
|
|
63
|
-
* @param {Rule} rule current rule
|
|
59
|
+
/**
|
|
60
|
+
* this funtion will remove given rule,
|
|
61
|
+
* if given selector and it's previous sibiling rule selector are same
|
|
62
|
+
* current rule properties will move to previous sibiling rule.
|
|
63
|
+
* @param {Rule} rule current rule
|
|
64
64
|
*/
|
|
65
65
|
|
|
66
66
|
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
/*Hover_active:ignore*/
|
|
2
|
-
g,a:hover{
|
|
3
|
-
color : red
|
|
4
|
-
}
|
|
5
|
-
/*Hover:ignore*/
|
|
6
|
-
h:hover{
|
|
7
|
-
background : yellow
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
/* Hover_active:ignore */
|
|
11
|
-
g,d+e:hover{
|
|
12
|
-
color : black
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
g,d e:hover{
|
|
16
|
-
color : black
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@media screen and (max-width:61.25em){
|
|
20
|
-
/* Hover_active:ignore */
|
|
21
|
-
a,b,a:hover, b:hover{
|
|
22
|
-
background-color : blue
|
|
23
|
-
}
|
|
24
|
-
a + b,a:hover + b:hover{
|
|
25
|
-
background-color : blue
|
|
26
|
-
}
|
|
27
|
-
a b:hover{
|
|
28
|
-
background-color : blue
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.cc:hover {
|
|
32
|
-
color: red;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
c:hover{
|
|
36
|
-
color : red
|
|
37
|
-
}
|
|
38
|
-
|
|
1
|
+
/*Hover_active:ignore*/
|
|
2
|
+
g,a:hover{
|
|
3
|
+
color : red
|
|
4
|
+
}
|
|
5
|
+
/*Hover:ignore*/
|
|
6
|
+
h:hover{
|
|
7
|
+
background : yellow
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* Hover_active:ignore */
|
|
11
|
+
g,d+e:hover{
|
|
12
|
+
color : black
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
g,d e:hover{
|
|
16
|
+
color : black
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@media screen and (max-width:61.25em){
|
|
20
|
+
/* Hover_active:ignore */
|
|
21
|
+
a,b,a:hover, b:hover{
|
|
22
|
+
background-color : blue
|
|
23
|
+
}
|
|
24
|
+
a + b,a:hover + b:hover{
|
|
25
|
+
background-color : blue
|
|
26
|
+
}
|
|
27
|
+
a b:hover{
|
|
28
|
+
background-color : blue
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.cc:hover {
|
|
32
|
+
color: red;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
c:hover{
|
|
36
|
+
color : red
|
|
37
|
+
}
|
|
38
|
+
|
|
39
39
|
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
/*Hover_active:ignore*/
|
|
2
|
-
g,a:hover{
|
|
3
|
-
color : red
|
|
4
|
-
}
|
|
5
|
-
/*Hover:ignore*/
|
|
6
|
-
h:hover{
|
|
7
|
-
background : yellow
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
/* Hover_active:ignore */
|
|
11
|
-
g,d+e:hover{
|
|
12
|
-
color : black
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
g,d e:hover{
|
|
16
|
-
color : black
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@media screen and (max-width:61.25em){
|
|
20
|
-
/* Hover_active:ignore */
|
|
21
|
-
a,b,a:hover, b:hover{
|
|
22
|
-
background-color : blue
|
|
23
|
-
}
|
|
24
|
-
a + b,a:hover + b:hover{
|
|
25
|
-
background-color : blue
|
|
26
|
-
}
|
|
27
|
-
a b:hover{
|
|
28
|
-
background-color : blue
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.cc:hover {
|
|
32
|
-
color: red;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
c:hover{
|
|
36
|
-
color : red
|
|
37
|
-
}
|
|
38
|
-
|
|
1
|
+
/*Hover_active:ignore*/
|
|
2
|
+
g,a:hover{
|
|
3
|
+
color : red
|
|
4
|
+
}
|
|
5
|
+
/*Hover:ignore*/
|
|
6
|
+
h:hover{
|
|
7
|
+
background : yellow
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* Hover_active:ignore */
|
|
11
|
+
g,d+e:hover{
|
|
12
|
+
color : black
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
g,d e:hover{
|
|
16
|
+
color : black
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@media screen and (max-width:61.25em){
|
|
20
|
+
/* Hover_active:ignore */
|
|
21
|
+
a,b,a:hover, b:hover{
|
|
22
|
+
background-color : blue
|
|
23
|
+
}
|
|
24
|
+
a + b,a:hover + b:hover{
|
|
25
|
+
background-color : blue
|
|
26
|
+
}
|
|
27
|
+
a b:hover{
|
|
28
|
+
background-color : blue
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.cc:hover {
|
|
32
|
+
color: red;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
c:hover{
|
|
36
|
+
color : red
|
|
37
|
+
}
|
|
38
|
+
|
|
39
39
|
}
|
|
@@ -4,9 +4,9 @@ var _postcss = _interopRequireDefault(require("postcss"));
|
|
|
4
4
|
|
|
5
5
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
6
6
|
|
|
7
|
-
/**
|
|
8
|
-
* we have give support for ignore(exclude) comments
|
|
9
|
-
* These are the comments' keyword
|
|
7
|
+
/**
|
|
8
|
+
* we have give support for ignore(exclude) comments
|
|
9
|
+
* These are the comments' keyword
|
|
10
10
|
*/
|
|
11
11
|
const hoverIgnoreQuery = 'Hover:ignore',
|
|
12
12
|
activeIgnoreQuery = 'Active:ignore',
|
package/lib/schemas/index.js
CHANGED
|
@@ -36,6 +36,9 @@ var _default = {
|
|
|
36
36
|
cli: 'stop_nodemon'
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
resourceHints: {
|
|
40
|
+
allowPrefetchingMultipleChunks: false
|
|
41
|
+
},
|
|
39
42
|
i18n: {
|
|
40
43
|
chunkSplitEnable: {
|
|
41
44
|
value: false,
|
|
@@ -68,17 +71,9 @@ var _default = {
|
|
|
68
71
|
before: [],
|
|
69
72
|
after: []
|
|
70
73
|
},
|
|
71
|
-
plugins:
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
hasRTL: false,
|
|
75
|
-
hoverActive: false,
|
|
76
|
-
combinerMediaQuery: false,
|
|
77
|
-
cssVariableReplacement: false,
|
|
78
|
-
selectorWeight: false,
|
|
79
|
-
minifier: false,
|
|
80
|
-
composeMinification: false
|
|
81
|
-
},
|
|
74
|
+
plugins: null,
|
|
75
|
+
// @type {Boolean | Array}
|
|
76
|
+
postCssPluginOrder: null,
|
|
82
77
|
patterns: {
|
|
83
78
|
valueReplacer: [],
|
|
84
79
|
selectorReplace: [],
|
|
@@ -95,7 +90,8 @@ var _default = {
|
|
|
95
90
|
hoverActive: [],
|
|
96
91
|
combinerMediaQuery: [],
|
|
97
92
|
cssVariableReplacement: [],
|
|
98
|
-
selectorWeight: []
|
|
93
|
+
selectorWeight: [],
|
|
94
|
+
hasRTL: []
|
|
99
95
|
},
|
|
100
96
|
cssVariableReplacementConfig: '',
|
|
101
97
|
selectorWeightConfig: {
|
|
@@ -267,17 +263,8 @@ var _default = {
|
|
|
267
263
|
value: true,
|
|
268
264
|
cli: 'enable_smaphook'
|
|
269
265
|
},
|
|
270
|
-
plugins:
|
|
271
|
-
|
|
272
|
-
selectorReplace: false,
|
|
273
|
-
hasRTL: false,
|
|
274
|
-
hoverActive: false,
|
|
275
|
-
combinerMediaQuery: false,
|
|
276
|
-
cssVariableReplacement: false,
|
|
277
|
-
selectorWeight: false,
|
|
278
|
-
minifier: false,
|
|
279
|
-
composeMinification: false
|
|
280
|
-
},
|
|
266
|
+
plugins: null,
|
|
267
|
+
postCssPluginOrder: null,
|
|
281
268
|
patterns: {
|
|
282
269
|
valueReplacer: [],
|
|
283
270
|
selectorReplace: [],
|
|
@@ -294,7 +281,8 @@ var _default = {
|
|
|
294
281
|
hoverActive: [],
|
|
295
282
|
combinerMediaQuery: [],
|
|
296
283
|
cssVariableReplacement: [],
|
|
297
|
-
selectorWeight: []
|
|
284
|
+
selectorWeight: [],
|
|
285
|
+
hasRTL: []
|
|
298
286
|
},
|
|
299
287
|
cssVariableReplacementConfig: '',
|
|
300
288
|
selectorWeightConfig: {
|
|
@@ -333,6 +321,7 @@ var _default = {
|
|
|
333
321
|
inject: true
|
|
334
322
|
},
|
|
335
323
|
removePropTypes: false,
|
|
324
|
+
customChunksBaseConfig: null,
|
|
336
325
|
customChunks: [{
|
|
337
326
|
name: 'styles',
|
|
338
327
|
pattern: '\\.css$'
|
|
@@ -382,18 +371,14 @@ var _default = {
|
|
|
382
371
|
value: true,
|
|
383
372
|
cli: 'react_live'
|
|
384
373
|
},
|
|
374
|
+
enableMDParser: {
|
|
375
|
+
value: true,
|
|
376
|
+
cli: 'markdown_parser'
|
|
377
|
+
},
|
|
385
378
|
rtlExclude: [],
|
|
386
379
|
selectorReplace: null,
|
|
387
|
-
plugins:
|
|
388
|
-
|
|
389
|
-
hoverActive: false,
|
|
390
|
-
combinerMediaQuery: false,
|
|
391
|
-
cssVariableReplacement: false,
|
|
392
|
-
selectorWeight: false,
|
|
393
|
-
minifier: false,
|
|
394
|
-
composeMinification: false,
|
|
395
|
-
selectorReplace: false
|
|
396
|
-
},
|
|
380
|
+
plugins: null,
|
|
381
|
+
postCssPluginOrder: null,
|
|
397
382
|
patterns: {
|
|
398
383
|
valueReplacer: [],
|
|
399
384
|
selectorReplace: [],
|
|
@@ -401,14 +386,16 @@ var _default = {
|
|
|
401
386
|
combinerMediaQuery: [],
|
|
402
387
|
hasRTL: [],
|
|
403
388
|
cssVariableReplacement: [],
|
|
404
|
-
selectorWeight: []
|
|
389
|
+
selectorWeight: [],
|
|
390
|
+
cssUniqueness: []
|
|
405
391
|
},
|
|
406
392
|
exclude: {
|
|
407
393
|
rtl: [],
|
|
408
394
|
hoverActive: [],
|
|
409
395
|
combinerMediaQuery: [],
|
|
410
396
|
cssVariableReplacement: [],
|
|
411
|
-
selectorWeight: []
|
|
397
|
+
selectorWeight: [],
|
|
398
|
+
hasRTL: []
|
|
412
399
|
},
|
|
413
400
|
cssVariableReplacementConfig: '',
|
|
414
401
|
selectorWeightConfig: {
|
package/lib/sh/pre-commit.sh
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep -E "\.(js)$") # Get staged files
|
|
4
|
-
|
|
5
|
-
CURRENT_BRANCH=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p') # Get branch name
|
|
6
|
-
|
|
7
|
-
echo "Branch Name - $CURRENT_BRANCH"
|
|
8
|
-
|
|
9
|
-
if [[ "$STAGED_FILES" = "" ]]; then
|
|
10
|
-
exit 0
|
|
11
|
-
fi
|
|
12
|
-
|
|
13
|
-
IS_FAILED=false
|
|
14
|
-
FILES=""
|
|
15
|
-
|
|
16
|
-
for FILE in $STAGED_FILES # Add files with space separation
|
|
17
|
-
do
|
|
18
|
-
FILES+="$FILE "
|
|
19
|
-
done
|
|
20
|
-
|
|
21
|
-
npm run lint --prefix ${PREFIX_PATH} $FILES # Run ESLint
|
|
22
|
-
|
|
23
|
-
if [[ "$?" != 0 ]]; then
|
|
24
|
-
IS_FAILED=true
|
|
25
|
-
fi
|
|
26
|
-
|
|
27
|
-
if $IS_FAILED; then
|
|
28
|
-
echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n"
|
|
29
|
-
exit 1
|
|
30
|
-
else
|
|
31
|
-
echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
|
|
32
|
-
fi
|
|
33
|
-
|
|
34
|
-
exit $?
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep -E "\.(js)$") # Get staged files
|
|
4
|
+
|
|
5
|
+
CURRENT_BRANCH=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p') # Get branch name
|
|
6
|
+
|
|
7
|
+
echo "Branch Name - $CURRENT_BRANCH"
|
|
8
|
+
|
|
9
|
+
if [[ "$STAGED_FILES" = "" ]]; then
|
|
10
|
+
exit 0
|
|
11
|
+
fi
|
|
12
|
+
|
|
13
|
+
IS_FAILED=false
|
|
14
|
+
FILES=""
|
|
15
|
+
|
|
16
|
+
for FILE in $STAGED_FILES # Add files with space separation
|
|
17
|
+
do
|
|
18
|
+
FILES+="$FILE "
|
|
19
|
+
done
|
|
20
|
+
|
|
21
|
+
npm run lint --prefix ${PREFIX_PATH} $FILES # Run ESLint
|
|
22
|
+
|
|
23
|
+
if [[ "$?" != 0 ]]; then
|
|
24
|
+
IS_FAILED=true
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
if $IS_FAILED; then
|
|
28
|
+
echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n"
|
|
29
|
+
exit 1
|
|
30
|
+
else
|
|
31
|
+
echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
|
|
32
|
+
fi
|
|
33
|
+
|
|
34
|
+
exit $?
|
package/lib/sh/reportPublish.sh
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
branchName=$2
|
|
3
|
-
url=$1
|
|
4
|
-
zipUrl=$3
|
|
5
|
-
unique=$(date +"%d_%m_%y_Time_%H_%M_%S")
|
|
6
|
-
publishFolder=$branchName"_"$unique
|
|
7
|
-
|
|
8
|
-
rm -rf ./reports
|
|
9
|
-
rm -rf ./scrTemplate
|
|
10
|
-
rm -rf ./errTemplate
|
|
11
|
-
rm -rf ./css
|
|
12
|
-
rm -rf ./js
|
|
13
|
-
rm -rf ./index.html
|
|
14
|
-
|
|
15
|
-
curl $zipUrl | tar xz
|
|
16
|
-
|
|
17
|
-
cp -rf ./reports/css ./css
|
|
18
|
-
cp -rf ./reports/js ./js
|
|
19
|
-
cp -rf ./reports/index.html ./index.html
|
|
20
|
-
if [ -d "./screenShots" ] ; then
|
|
21
|
-
cp -rf ./scrTemplate/* ./screenShots/
|
|
22
|
-
else
|
|
23
|
-
mkdir ./screenShots
|
|
24
|
-
cp -rf ./scrTemplate/* ./screenShots/
|
|
25
|
-
fi
|
|
26
|
-
|
|
27
|
-
[ ! -f "./result.json" ] && touch result.json && cp -rf ./errTemplate/* ./result.json
|
|
28
|
-
[ ! -d "./commitCoverage" ] && mkdir commitCoverage && cp -rf ./errTemplate/* ./commitCoverage/
|
|
29
|
-
[ ! -d "./unittest" ] && mkdir unittest && cp -rf ./errTemplate/* ./unittest/
|
|
30
|
-
[ ! -d "./coverageTest" ] && mkdir coverageTest && cp -rf ./errTemplate/* ./coverageTest/
|
|
31
|
-
[ ! -d "./coverage" ] && mkdir coverage && cp -rf ./errTemplate/* ./coverage/
|
|
32
|
-
|
|
33
|
-
tar -czvf $publishFolder.tar.gz coverage screenShots unittest coverageTest commitCoverage ./css ./js ./index.html ./result.json
|
|
34
|
-
|
|
35
|
-
curl -i -F name=file -F file=@$publishFolder.tar.gz $url"/cgi-bin/upload.py"
|
|
36
|
-
replace=$publishFolder
|
|
37
|
-
reportUrl=$url"/"$replace
|
|
38
|
-
subject="Client Report - React - $publishFolder"
|
|
39
|
-
msg="<p><b>Report URL - <a href='$reportUrl'>Link</a></b></p>
|
|
40
|
-
<p><b>Report Branchname - $branchName</b></p>
|
|
41
|
-
<p><b>Report Unique ID - $unique</b></p>
|
|
42
|
-
<p><b>Report Developer - $6</b></p>"
|
|
43
|
-
#node mailSender.js <from> <pass> <to> <subject> <text>
|
|
44
|
-
BASEDIR=$(dirname "$0")
|
|
45
|
-
node $BASEDIR"/../utils/mailSender" $4 $5 $6 "$subject" "$msg" $7 $8 "$reportUrl"
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
branchName=$2
|
|
3
|
+
url=$1
|
|
4
|
+
zipUrl=$3
|
|
5
|
+
unique=$(date +"%d_%m_%y_Time_%H_%M_%S")
|
|
6
|
+
publishFolder=$branchName"_"$unique
|
|
7
|
+
|
|
8
|
+
rm -rf ./reports
|
|
9
|
+
rm -rf ./scrTemplate
|
|
10
|
+
rm -rf ./errTemplate
|
|
11
|
+
rm -rf ./css
|
|
12
|
+
rm -rf ./js
|
|
13
|
+
rm -rf ./index.html
|
|
14
|
+
|
|
15
|
+
curl $zipUrl | tar xz
|
|
16
|
+
|
|
17
|
+
cp -rf ./reports/css ./css
|
|
18
|
+
cp -rf ./reports/js ./js
|
|
19
|
+
cp -rf ./reports/index.html ./index.html
|
|
20
|
+
if [ -d "./screenShots" ] ; then
|
|
21
|
+
cp -rf ./scrTemplate/* ./screenShots/
|
|
22
|
+
else
|
|
23
|
+
mkdir ./screenShots
|
|
24
|
+
cp -rf ./scrTemplate/* ./screenShots/
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
[ ! -f "./result.json" ] && touch result.json && cp -rf ./errTemplate/* ./result.json
|
|
28
|
+
[ ! -d "./commitCoverage" ] && mkdir commitCoverage && cp -rf ./errTemplate/* ./commitCoverage/
|
|
29
|
+
[ ! -d "./unittest" ] && mkdir unittest && cp -rf ./errTemplate/* ./unittest/
|
|
30
|
+
[ ! -d "./coverageTest" ] && mkdir coverageTest && cp -rf ./errTemplate/* ./coverageTest/
|
|
31
|
+
[ ! -d "./coverage" ] && mkdir coverage && cp -rf ./errTemplate/* ./coverage/
|
|
32
|
+
|
|
33
|
+
tar -czvf $publishFolder.tar.gz coverage screenShots unittest coverageTest commitCoverage ./css ./js ./index.html ./result.json
|
|
34
|
+
|
|
35
|
+
curl -i -F name=file -F file=@$publishFolder.tar.gz $url"/cgi-bin/upload.py"
|
|
36
|
+
replace=$publishFolder
|
|
37
|
+
reportUrl=$url"/"$replace
|
|
38
|
+
subject="Client Report - React - $publishFolder"
|
|
39
|
+
msg="<p><b>Report URL - <a href='$reportUrl'>Link</a></b></p>
|
|
40
|
+
<p><b>Report Branchname - $branchName</b></p>
|
|
41
|
+
<p><b>Report Unique ID - $unique</b></p>
|
|
42
|
+
<p><b>Report Developer - $6</b></p>"
|
|
43
|
+
#node mailSender.js <from> <pass> <to> <subject> <text>
|
|
44
|
+
BASEDIR=$(dirname "$0")
|
|
45
|
+
node $BASEDIR"/../utils/mailSender" $4 $5 $6 "$subject" "$msg" $7 $8 "$reportUrl"
|