Refactor "test_package.sh" to its original purpose, add multiples checks for packages definition

This commit is contained in:
Hugo Alliaume
2025-09-20 13:14:31 +02:00
parent 8c8ce288a4
commit 455bd23aa3

View File

@@ -18,9 +18,9 @@
"build": "tsx ../../../bin/build_package.ts .",
"watch": "tsx ../../../bin/build_package.ts . --watch",
"test": "pnpm run test:unit && pnpm run test:browser",
"test:unit": "../../../bin/test_package.sh . --unit",
"test:browser": "../../../bin/test_package.sh . --browser",
"test:browser:ui": "../../../bin/test_package.sh . --browser --ui",
"test:unit": "../../../bin/unit_test_package.sh .",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"check": "biome check",
"ci": "biome ci"
},