From 53e7e42c156d577d6d1bb02ff33d0d0b5fbbd965 Mon Sep 17 00:00:00 2001 From: Rezmason Date: Mon, 2 Jun 2025 19:12:00 -0700 Subject: [PATCH] Removing extra formatting step from test-bundles --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fdfa9e4..0badfdd 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ ], "scripts": { "test": "http-server -c-1 --cors -o tools/test/index.html", - "test-bundles": "npm run format && npm run build && vite --config tools/dev.config.js --open /tools/test/index.html", + "test-bundles": "npm run build && vite --config tools/dev.config.js --open /tools/test/index.html", "dev": "npm run format && vite --config tools/dev.config.js", "build": "npm run format && rm -rf ./dist/* && vite build --config tools/vite/core.config.js && vite build --config tools/vite/full.config.js", "format": "eslint . && prettier --write --no-error-on-unmatched-pattern 'js/**/*.{js,jsx,mjs,json}' '*.{js,jsx,mjs,json,html}' 'assets/**/*.{json,css}'"