@nsshunt/stsconfig 1.25.132 → 1.25.134
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/dist/stsconfig.mjs +7 -14
- package/dist/stsconfig.mjs.map +1 -1
- package/dist/stsconfig.umd.js +7 -14
- package/dist/stsconfig.umd.js.map +1 -1
- package/package.json +7 -7
package/dist/stsconfig.mjs
CHANGED
|
@@ -11,8 +11,7 @@ var ansiStyles$1 = { exports: {} };
|
|
|
11
11
|
var colorName;
|
|
12
12
|
var hasRequiredColorName;
|
|
13
13
|
function requireColorName() {
|
|
14
|
-
if (hasRequiredColorName)
|
|
15
|
-
return colorName;
|
|
14
|
+
if (hasRequiredColorName) return colorName;
|
|
16
15
|
hasRequiredColorName = 1;
|
|
17
16
|
colorName = {
|
|
18
17
|
"aliceblue": [240, 248, 255],
|
|
@@ -169,8 +168,7 @@ function requireColorName() {
|
|
|
169
168
|
var conversions;
|
|
170
169
|
var hasRequiredConversions;
|
|
171
170
|
function requireConversions() {
|
|
172
|
-
if (hasRequiredConversions)
|
|
173
|
-
return conversions;
|
|
171
|
+
if (hasRequiredConversions) return conversions;
|
|
174
172
|
hasRequiredConversions = 1;
|
|
175
173
|
const cssKeywords = requireColorName();
|
|
176
174
|
const reverseKeywords = {};
|
|
@@ -842,8 +840,7 @@ function requireConversions() {
|
|
|
842
840
|
var route;
|
|
843
841
|
var hasRequiredRoute;
|
|
844
842
|
function requireRoute() {
|
|
845
|
-
if (hasRequiredRoute)
|
|
846
|
-
return route;
|
|
843
|
+
if (hasRequiredRoute) return route;
|
|
847
844
|
hasRequiredRoute = 1;
|
|
848
845
|
const conversions2 = requireConversions();
|
|
849
846
|
function buildGraph() {
|
|
@@ -914,8 +911,7 @@ function requireRoute() {
|
|
|
914
911
|
var colorConvert;
|
|
915
912
|
var hasRequiredColorConvert;
|
|
916
913
|
function requireColorConvert() {
|
|
917
|
-
if (hasRequiredColorConvert)
|
|
918
|
-
return colorConvert;
|
|
914
|
+
if (hasRequiredColorConvert) return colorConvert;
|
|
919
915
|
hasRequiredColorConvert = 1;
|
|
920
916
|
const conversions2 = requireConversions();
|
|
921
917
|
const route2 = requireRoute();
|
|
@@ -1152,8 +1148,7 @@ var util = {
|
|
|
1152
1148
|
var templates;
|
|
1153
1149
|
var hasRequiredTemplates;
|
|
1154
1150
|
function requireTemplates() {
|
|
1155
|
-
if (hasRequiredTemplates)
|
|
1156
|
-
return templates;
|
|
1151
|
+
if (hasRequiredTemplates) return templates;
|
|
1157
1152
|
hasRequiredTemplates = 1;
|
|
1158
1153
|
const TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
|
|
1159
1154
|
const STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
|
|
@@ -1593,12 +1588,10 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1593
1588
|
try {
|
|
1594
1589
|
accessSync(passwordFile, constants.R_OK);
|
|
1595
1590
|
const data = readFileSync(passwordFile, "utf8");
|
|
1596
|
-
if (logger)
|
|
1597
|
-
logger.debug(chalk$1.green(`Successfully loaded password file: [${passwordFile}]`));
|
|
1591
|
+
if (logger) logger.debug(chalk$1.green(`Successfully loaded password file: [${passwordFile}]`));
|
|
1598
1592
|
return data;
|
|
1599
1593
|
} catch (err) {
|
|
1600
|
-
if (logger)
|
|
1601
|
-
logger.debug(chalk$1.red(`Problem loading password file: [${passwordFile}], Error: [${err}]`));
|
|
1594
|
+
if (logger) logger.debug(chalk$1.red(`Problem loading password file: [${passwordFile}], Error: [${err}]`));
|
|
1602
1595
|
return "";
|
|
1603
1596
|
}
|
|
1604
1597
|
};
|