feat: replace deploy step with node script
Some checks failed
Build and Deploy / build_and_deploy (push) Failing after 30s

This commit is contained in:
Devin Haska 2025-04-14 13:45:38 -07:00
parent fb326ca244
commit 2310e52fb3
4 changed files with 285 additions and 110 deletions

View file

@ -9,7 +9,9 @@
"scripts": {
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --quiet",
"build": "npx @11ty/eleventy"
"build": "npx @11ty/eleventy",
"clean": "rimraf dist",
"upload": "node scripts/upload.js"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
@ -33,6 +35,7 @@
"pluralize": "^8.0.0",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1"
"postcss-import-ext-glob": "^2.1.1",
"upload-to-bunny": "^1.4.0"
}
}