Clean up .graphite file serde encoding

This commit is contained in:
Keavon Chambers
2023-12-06 01:51:48 -08:00
parent 8f9371dad0
commit 3e35abd377
10 changed files with 30 additions and 17 deletions
+1
View File
@@ -8,6 +8,7 @@
"scripts": {
"start": "npm run build-wasm && concurrently -k -n \"VITE,RUST\" \"vite\" \"npm run watch:wasm\" || (npm run print-building-help && exit 1)",
"profiling": "npm run build-wasm-profiling && concurrently -k -n \"VITE,RUST\" \"vite\" \"npm run watch:wasm-profiling\" || (npm run print-building-help && exit 1)",
"production": "npm run build-wasm-prod && concurrently -k -n \"VITE,RUST\" \"vite\" \"npm run watch:wasm\" || (npm run print-building-help && exit 1)",
"build": "npm run build-wasm-prod && vite build || (npm run print-building-help && exit 1)",
"build-profiling": "npm run build-wasm-profiling && vite build || (npm run print-building-help && exit 1)",
"lint": "eslint .",
@@ -32,7 +32,7 @@
if (!editor.instance.inDevelopmentMode()) return { name };
const tooltip = `Document ID ${doc.id}`;
const tooltip = `Document ID: ${doc.id}`;
return { name, tooltip };
});
+1
View File
@@ -52,6 +52,7 @@ export default defineConfig({
},
server: {
port: 8080,
host: "0.0.0.0",
},
build: {
rollupOptions: {