From b317b796eac8aefdf8b0f989800c2cc078790ae4 Mon Sep 17 00:00:00 2001 From: mtmail Date: Wed, 12 May 2021 12:45:13 +0200 Subject: [PATCH] "yarn test" should run "yarn build" first to avoid outdated bundle (#147) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d71a4a..9a9c082 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "rollup -c", "dev": "rollup -c -w", "lint": "eslint --quiet .*.js src/ test/", - "test": "mocha --recursive test/", + "test": "rollup -c && mocha --recursive test/", "start": "static-server dist" }, "devDependencies": { -- 2.43.2