chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-09-15 11:43:04 -07:00
parent 7ec3c83112
commit 4302f61f8c
No known key found for this signature in database
4 changed files with 10 additions and 10 deletions

View file

@ -26,8 +26,8 @@ export const cssConfig = (eleventyConfig) => {
await fs.writeFile(outputPath, result.css) await fs.writeFile(outputPath, result.css)
return result.css return result.css
}; }
} }
}, },
}); })
}; }

View file

@ -2,10 +2,10 @@ import slugify from 'slugify'
export const shuffleArray = array => { export const shuffleArray = array => {
for (let i = array.length - 1; i > 0; i--) { for (let i = array.length - 1; i > 0; i--) {
let j = Math.floor(Math.random() * (i + 1)); let j = Math.floor(Math.random() * (i + 1))
let temp = array[i]; let temp = array[i]
array[i] = array[j]; array[i] = array[j]
array[j] = temp; array[j] = temp
} }
return array return array
} }

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.6", "version": "24.8.7",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.6", "version": "24.8.7",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.8.6", "version": "24.8.7",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {