mirror of
https://github.com/picocss/pico.git
synced 2025-04-26 03:06:14 -04:00
chore: upgrade dependencies
This commit is contained in:
parent
6dc6489e69
commit
9b58221407
242 changed files with 4270 additions and 4123 deletions
|
@ -103,7 +103,7 @@ themeColors.forEach((themeColor, colorIndex) => {
|
|||
},
|
||||
];
|
||||
|
||||
const displayAsciiProgress = ({length, index, color}) => {
|
||||
const displayAsciiProgress = ({ length, index, color }) => {
|
||||
const progress = Math.round((index / length) * 100);
|
||||
const bar = "■".repeat(progress / 10);
|
||||
const empty = "□".repeat(10 - progress / 10);
|
||||
|
@ -127,7 +127,10 @@ themeColors.forEach((themeColor, colorIndex) => {
|
|||
// Compile the file
|
||||
const result = sass.compile(
|
||||
path.join(tempScssFoldername, `${version.name}.${themeColor}.scss`),
|
||||
{ outputStyle: "compressed" },
|
||||
{
|
||||
outputStyle: "compressed",
|
||||
silenceDeprecations: ["global-builtin", "color-functions", "mixed-decls"],
|
||||
},
|
||||
);
|
||||
|
||||
// Write the file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue