From 6c8db2a7484cb3aee64990e11e5f042a14a95332 Mon Sep 17 00:00:00 2001 From: Aronov Aleksandr Date: Sat, 9 Nov 2024 19:53:42 +0100 Subject: [PATCH] Updated prettier check to use tools instead --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 996489d..fef72b7 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "scripts": { "test:watch": "jest --watch", "test": "jest", - "lint": "npm run check:ts && npm run check:eslint && npm run check:prettier && npm run check:i18n", + "lint": "npm run check:ts && npm run check:eslint && npm run check:prettier-diff && npm run check:i18n", "check:ts": "tsc --noEmit", "check:i18n": "node ./tools/check-i18n.mjs", - "check:prettier": "npm run prettier:check", + "check:prettier-diff": "node ./tools/check-prettier-diff.mjs", "check:eslint": "eslint -c eslint.config.mjs", "build": "npm test && npm run lint && npm run build:prod", "build:prod": "webpack --mode=production",