From 511855fb7c501ac561934a337ce2cb3a216e6314 Mon Sep 17 00:00:00 2001 From: Luc Patiny Date: Tue, 3 Jan 2023 20:17:52 +0100 Subject: [PATCH] chore: reorder package.json scripts --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 64f00ac..4e27e5e 100644 --- a/package.json +++ b/package.json @@ -11,17 +11,17 @@ "lib-esm" ], "scripts": { + "build": "npm run buildStates && cheminfo-build", "buildStates": "node builder/createStatesJs.js", "check-types": "tsc --noEmit", "clean": "rimraf lib lib-esm", "eslint": "eslint builder src", "eslint-fix": "npm run eslint -- --fix", - "test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types", - "test-only": "jest --coverage", - "build": "npm run buildStates && cheminfo-build", "prepack": "npm run tsc", "prettier": "prettier --check src", "prettier-write": "prettier --write src", + "test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types", + "test-only": "jest --coverage", "tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm", "tsc-cjs": "tsc --project tsconfig.cjs.json", "tsc-esm": "tsc --project tsconfig.esm.json"