|
20 | 20 | "clean": "rimraf --glob './*.tsbuildinfo' ./.eslintcache ./coverage ./.turbo && yarn workspaces foreach --all --parallel --interlaced --verbose run clean", |
21 | 21 | "create-package": "tsx packages/create-package/src/index.ts", |
22 | 22 | "lint": "yarn constraints && yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies", |
23 | | - "lint:dependencies": "yarn dedupe --check && yarn depcheck && yarn workspaces foreach --all --parallel --verbose run lint:dependencies", |
24 | | - "lint:dependencies:fix": "yarn dedupe && yarn depcheck && yarn workspaces foreach --all --parallel --verbose run lint:dependencies", |
| 23 | + "lint:dependencies": "yarn dedupe --check >/dev/null && yarn depcheck --quiet && yarn workspaces foreach --all --parallel --verbose run lint:dependencies", |
| 24 | + "lint:dependencies:fix": "yarn dedupe >/dev/null && yarn depcheck --quiet && yarn workspaces foreach --all --parallel --verbose run lint:dependencies", |
25 | 25 | "lint:eslint": "yarn eslint . --cache", |
26 | 26 | "lint:fix": "yarn constraints --fix && yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies:fix", |
27 | | - "lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '**/*.yml' '!**/CHANGELOG.old.md' '!.yarnrc.yml' '!CLAUDE.md' '!merged-packages/**' --ignore-path .gitignore", |
| 27 | + "lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '**/*.yml' '!**/CHANGELOG.old.md' '!.yarnrc.yml' '!CLAUDE.md' '!merged-packages/**' --ignore-path .gitignore --log-level error", |
28 | 28 | "postinstall": "simple-git-hooks && yarn rebuild:native", |
29 | 29 | "prepack": "./scripts/prepack.sh", |
30 | 30 | "pretest": "bash scripts/reset-coverage-thresholds.sh", |
31 | 31 | "rebuild:native": "./scripts/rebuild-native.sh", |
32 | 32 | "test": "yarn pretest && vitest run", |
33 | 33 | "test:ci": "vitest run --coverage false", |
34 | | - "test:dev": "yarn test --mode development", |
| 34 | + "test:dev": "yarn test --mode development --reporter dot", |
35 | 35 | "test:e2e": "yarn workspaces foreach --all run test:e2e", |
36 | 36 | "test:e2e:ci": "yarn workspaces foreach --all run test:e2e:ci", |
37 | 37 | "test:verbose": "yarn test --reporter verbose", |
|
0 commit comments