color-name-list 9.7.0 → 9.7.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/dist/colornames.bestof.csv +0 -1
- package/dist/colornames.bestof.esm.js +1 -1
- package/dist/colornames.bestof.esm.mjs +1 -1
- package/dist/colornames.bestof.html +1 -1
- package/dist/colornames.bestof.json +1 -1
- package/dist/colornames.bestof.min.json +1 -1
- package/dist/colornames.bestof.scss +1 -1
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +0 -4
- package/dist/colornames.bestof.yaml +0 -3
- package/package.json +1 -1
- package/scripts/build.js +12 -0
- package/src/colornames.csv +1 -1
|
@@ -12841,10 +12841,6 @@
|
|
|
12841
12841
|
<hex>#edebe1</hex>
|
|
12842
12842
|
</color>
|
|
12843
12843
|
<color>
|
|
12844
|
-
<name>Savannah Grass</name>
|
|
12845
|
-
<hex>#babc72</hex>
|
|
12846
|
-
</color>
|
|
12847
|
-
<color>
|
|
12848
12844
|
<name>Savory Salmon</name>
|
|
12849
12845
|
<hex>#d19c97</hex>
|
|
12850
12846
|
</color>
|
package/package.json
CHANGED
package/scripts/build.js
CHANGED
|
@@ -64,6 +64,18 @@ colorsSrc.values['name'].forEach((name) => {
|
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
66
|
|
|
67
|
+
// loop good name markers
|
|
68
|
+
colorsSrc.values['good name'].forEach((str) => {
|
|
69
|
+
// check for spaces
|
|
70
|
+
if (spacesValidation.test(str)) {
|
|
71
|
+
log('"good name" marker', str, `${str} found either a leading or trailing space (or both)`);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (!(str == 'x' || str == '')) {
|
|
75
|
+
log('"good name" marker', str, `${str} must be a lowercase "x" character or empty`);
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
|
|
67
79
|
showLog();
|
|
68
80
|
|
|
69
81
|
if (isTestRun) {
|
package/src/colornames.csv
CHANGED
|
@@ -22952,7 +22952,7 @@ Sauvignon,#f4eae4,
|
|
|
22952
22952
|
Sauvignon Blanc,#b18276,
|
|
22953
22953
|
Savanna,#874c44,
|
|
22954
22954
|
Savannah,#d1bd92,
|
|
22955
|
-
Savannah Grass,#babc72,
|
|
22955
|
+
Savannah Grass,#babc72,
|
|
22956
22956
|
Savannah Moss,#47533f,
|
|
22957
22957
|
Savannah Sun,#ffb989,
|
|
22958
22958
|
Saveloy,#aa2200,
|