Skip to content

Commit

Permalink
chore: remove find-up (#5022)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Nov 28, 2023
1 parent d4499fd commit 44a607c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"clean-dist": "shx rm -rf \"packages/*/dist\"",
"clean": "shx rm -rf \"{*,*/*}/{*.tsbuildinfo,*.tsbuildInfo,temp,coverage}\" \"**/dist/**/*.tsbuildInfo\" lcov.info && pnpm -r run clean",
"#coverage-collect": "globcat \"packages/*/coverage/lcov.info\" > lcov.info",
"coverage-collect": "cat packages/*/coverage/lcov.info > lcov.info",
"coverage-collect": "shx cat packages/*/coverage/lcov.info > lcov.info",
"coverage": "pnpm --stream -r --workspace-concurrency=1 run coverage && pnpm run coverage-collect",
"eslint-fix": "eslint . --fix --cache",
"eslint-fix-no-cache": "eslint . --fix",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test-packages/cspell-types/validate-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"find-up": "^6.3.0"
"find-up-simple": "^1.0.0"
},
"engines": {
"node": ">=18"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import assert from 'assert';
import Ajv from 'ajv';
import { findUp } from 'find-up';
import { findUp } from 'find-up-simple';
import { promises as fs } from 'node:fs';

const fixturesUrl = new URL('fixtures/', import.meta.url);
Expand Down

0 comments on commit 44a607c

Please sign in to comment.