From 98ab44340fde545278a22eae29756b13849f01cd Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Tue, 30 Jul 2024 23:09:44 +0100 Subject: [PATCH] Build: Restore demos/bundlers in npm `run test-demos` I ran it separately locally, and then verified the overall command passed. Failed to notice the latter no longer included the former. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4afbd3dfd..60ebc14cf 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "test-cli": "node bin/qunit.js test/main/ test/cli/*.js", "test": "npm run lint && npm run build && npm run test-main && npm run test-cli", "test-nolint": "npm run build && npm run test-main && npm run test-cli", - "test-demos": "npm run build && node bin/qunit.js demos/*.js", + "test-demos": "npm run build && node bin/qunit.js demos/*.{mjs,js}", "browserstack": "browserstack-runner -v", "authors": "(echo 'Authors ordered by first contribution\n' && git log --format='%aN <%aE>' --no-merges --reverse | awk '!seen[$0]++') | tee AUTHORS.txt", "coverage": "npm run build-coverage && npm run coverage-cli && npm run coverage-main && nyc report",