summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 09:39:41 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 09:41:58 +0100
commit6549313a54e7fede18cfa170df82c29f511d76d7 (patch)
tree2dc148824adfa08dd7b32cf2ca2179e6e3e23dfc /package.json
parentfae665188dfd2c333c6fbba43a8d3c776b285d27 (diff)
No more API build step
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 1 insertions, 5 deletions
diff --git a/package.json b/package.json
index f465ffc..fde72ff 100644
--- a/package.json
+++ b/package.json
@@ -2,13 +2,9 @@
"type": "module",
"private": "true",
"scripts": {
- "predev": "npm run build-api",
"dev": "astro dev",
- "prestart": "npm run build-api",
"start": "astro dev",
- "build": "npm run build-api && astro build",
- "build-api": "cd api-src && npx tsc",
- "prebuild-api": "cd api && ls -R -1 | grep -e \"\\(.js\\|.js.map\\)$\" | xargs rm",
+ "build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",