Add vercel-post-deploy script

This commit is contained in:
Sam Carlton 2022-08-21 10:13:04 -05:00
parent 7c10c0a704
commit 2d70dd248f
2 changed files with 8 additions and 0 deletions

View file

@ -50,6 +50,7 @@
"scan-new-apps": "npx vite-node scripts/scan-new-apps.js", "scan-new-apps": "npx vite-node scripts/scan-new-apps.js",
"cloudflare-deploy": "npm run build-api", "cloudflare-deploy": "npm run build-api",
"vercel-build": "run-s scan-new-apps test-prebuild build-lists-and-api test-postbuild-api", "vercel-build": "run-s scan-new-apps test-prebuild build-lists-and-api test-postbuild-api",
"vercel-post-deploy": "npx vite-node scripts/vercel-post-deploy.js",
"netlify-build": "run-s test-prebuild-functions download-sitemaps stork-index generate-astro test-postbuild-functions test-circular-deps" "netlify-build": "run-s test-prebuild-functions download-sitemaps stork-index generate-astro test-postbuild-functions test-circular-deps"
}, },
"dependencies": { "dependencies": {

View file

@ -0,0 +1,7 @@
;(async () => {
console.log( 'process.env', process.env )
process.exit()
})()