Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
feat(checkmissintranslations.ts): run script before default ones
Browse files Browse the repository at this point in the history
Run yarn translation:check before yarn start and yarn test
  • Loading branch information
marcosvega91 committed May 3, 2020
1 parent 7ab8195 commit 5ef3f7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -105,10 +105,10 @@
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"commit": "npx git-cz",
"start": "react-scripts start",
"start": "yarn translation:check && react-scripts start",
"build": "react-scripts build",
"prepublishOnly": "npm run build",
"test": "react-scripts test --detectOpenHandles",
"test": "yarn translation:check && react-scripts test --detectOpenHandles",
"test:ci": "cross-env CI=true react-scripts test --passWithNoTests",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"scripts/**/*.{js,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"scripts/**/*.{js,ts}\" --fix",
Expand Down

0 comments on commit 5ef3f7e

Please sign in to comment.