From 7915e5b19786ca73ab893a4836026056b0de82c6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 16:12:34 +0000 Subject: [PATCH 1/2] chore(deps): pin dependencies --- bun.lockb | Bin 67157 -> 67157 bytes package.json | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bun.lockb b/bun.lockb index f3d5885d5e043e8adf604eb5700337fe89157481..4824347537c706579a024106def131613990a6d6 100755 GIT binary patch delta 85 zcmccG!*aEUWyAk1ii}2jhI)n!3=9E4%*DXaz~+5?{+e6wt2v-DlNGjlD46P*=$Qf) clx3Er7MCzE*j_YgH*^)sf+^bEvGr^K06;hx47L|d+6`TWvS5lfcWgZy0013l84mye diff --git a/package.json b/package.json index 4094e66..b1a6813 100644 --- a/package.json +++ b/package.json @@ -47,12 +47,12 @@ "@biomejs/biome": "1.9.0", "@skypack/package-check": "0.2.2", "@types/consola": "2.2.5", - "@vitest/coverage-v8": "^2.1.1", - "@vitest/ui": "^2.1.1", + "@vitest/coverage-v8": "2.1.1", + "@vitest/ui": "2.1.1", "bun-types": "latest", "typescript": "5.6.2", - "vite": "^5.4.5", - "vitest": "^2.1.1" + "vite": "5.4.5", + "vitest": "2.1.1" }, "engines": { "node": ">=18.0.0" From a79bcc4c03b2851252a24b0a20b8cdea9c541dbe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Sat, 14 Sep 2024 16:12:59 +0000 Subject: [PATCH 2/2] Apply automatic changes --- package.json | 8 ++++---- src/lib.spec.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index b1a6813..9bfcd12 100644 --- a/package.json +++ b/package.json @@ -30,13 +30,13 @@ "build": "bun build src/index.ts --outdir ./dist --target node --format esm --minify --external zx", "clean": "rm -rf cli && echo 'Done.'", "dev": "bun run --watch ./src/index.ts", - "test": "vitest", - "test:ui": "vitest --ui", - "test:watch": "vitest --watch", - "test:coverage": "vitest run --coverage", "format": "biome format --write .", "lint": "biome lint --apply .", "np": "bun install && bun run build && bunx np@latest --no-tests", + "test": "vitest", + "test:coverage": "vitest run --coverage", + "test:ui": "vitest --ui", + "test:watch": "vitest --watch", "typecheck": "tsc --noEmit" }, "dependencies": { diff --git a/src/lib.spec.ts b/src/lib.spec.ts index 63e43c0..73e0ae9 100644 --- a/src/lib.spec.ts +++ b/src/lib.spec.ts @@ -1,7 +1,7 @@ import { writeFileSync } from 'node:fs' import consola from 'consola' -import { writeFile, helpCommand, versionCommand } from './lib' -import { describe, it, expect, vi } from 'vitest' +import { describe, expect, it, vi } from 'vitest' +import { helpCommand, versionCommand, writeFile } from './lib' vi.mock('node:fs') vi.mock('consola')