Clean up old scripts

This commit is contained in:
Sam Carlton 2022-07-02 15:07:01 -05:00
parent f33d2f4099
commit b8cf876692

View file

@ -24,13 +24,11 @@
"test-postbuild-api": "run-s test-listings",
"test-postbuild-functions": "ava ./test/main.js --verbose",
"test": "ava --timeout=1m --verbose",
"dev": "nuxt",
"build": "nuxt build",
"dev": "npm run dev-astro",
"build": "npm run generate-astro",
"build-api": "npm run clone-readme && npm run build-lists -- --with-api --no-lists",
"build-lists-and-api": "npm run clone-readme && npm run build-lists -- --with-api",
"start": "nuxt start",
"generate-dev": "npm run generate && npm test",
"generate": "npm run clone-readme && npm run build-lists && npm run generate-nuxt && npm run generate-eleventy",
"build-lists": "npm run test-prebuild && node -r esm -r tsconfig-paths/register build-lists.js",
"setup-stork": "run-s download-stork-toml download-stork-executable",
"build-stork-index": "./$npm_package_config_stork_executable build --input $npm_package_config_stork_toml --output $npm_package_config_stork_index",
@ -43,13 +41,7 @@
"stork-netlify": "chmod +x scripts/stork-netlify.sh && ./scripts/stork-netlify.sh",
"dev-astro": "astro dev",
"generate-astro": "astro build --experimental-ssr",
"generate-nuxt": "NODE_OPTIONS=--max-old-space-size=60000 nuxt generate",
"generate-eleventy": "node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet",
"generate-postcss": "ENV=production postcss assets/css/tailwind.css --o static/tailwind.css",
"dev-eleventy": "node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve",
"dev-eleventy-debug": "DEBUG=Eleventy* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve",
"dev-eleventy-benchmark": "DEBUG=Eleventy:Benchmark* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve",
"dev-eleventy-computed": "DEBUG=Eleventy:ComputedData* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",