Skip to content

Commit

Permalink
ECHOES-493 Add check on .d.ts generation
Browse files Browse the repository at this point in the history
david-cho-lerat-sonarsource committed Dec 16, 2024
1 parent 14c95ca commit e3c567b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -35,7 +35,9 @@
"lint-report": "eslint --ext js,ts,tsx,snap -f json -o build-reports/eslint-report/eslint-report.json .",
"storybook": "storybook dev -p 6006",
"tokens-check": "./config/scripts/validate-tokens.sh",
"ts-check": "tsc --noEmit",
"ts-check": "yarn ts-check-files && yarn ts-check-declarations",
"ts-check-files": "tsc --noEmit",
"ts-check-declarations": "tsc --noEmit false --emitDeclarationOnly --isolatedModules false --outFile ./build-reports/ts-declarations/all-declarations",
"validate": "yarn lint && yarn ts-check && yarn format-check",
"validate-ci": "yarn dep-check && yarn intl-keys-check && yarn tokens-check && yarn fonts-check && yarn lint-report && yarn ts-check && yarn format-check"
},

0 comments on commit e3c567b

Please sign in to comment.