summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorojacobson <ojacobson@noreply.codeberg.org>2025-05-30 21:12:57 +0200
committerojacobson <ojacobson@noreply.codeberg.org>2025-05-30 21:12:57 +0200
commit7a5c82d9b86e0a0828f4ccaac42b2db398945406 (patch)
treeb80ffb244b9826cd553502505533e1199d4c722f /package.json
parentebb6a0bff2dd14afec3f0bb1db556797ac2f34ab (diff)
parent4396c912771f136f7d397a67f247c81532520b85 (diff)
Call `vite` directly to build the frontend.
Calling through `npm` wasn't adding anything other than complexity, and it made it somewhat harder to follow what tools did what. I'm also pretty sure `tools/build-ui` was totally unused. This was originally part of [another proposal][pr-6]. I've broken it out to make the intent clearer, and to make the proposal easier to get a handle on in isolation from other, related changes. Thanks to @wlonk for their input on this! [pr-6]: https://codeberg.org/ojacobson/pilcrow/pulls/6 Merges prop/build-without-npm into main.
Diffstat (limited to 'package.json')
-rw-r--r--package.json3
1 files changed, 0 insertions, 3 deletions
diff --git a/package.json b/package.json
index a43e01e..85099e8 100644
--- a/package.json
+++ b/package.json
@@ -7,9 +7,6 @@
"node": ">=22.0.0 <23.0.0"
},
"scripts": {
- "dev": "vite dev",
- "build": "vite build",
- "preview": "vite preview",
"lint": "prettier --check ui && eslint ui",
"format": "prettier --write ui",
"test": "vitest",