Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cli/scripts/check-package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Package verification script for @google/design.md
*
* Runs 17 checks across 4 phases to ensure the package is correctly
* Runs package checks across 4 phases to ensure the package is correctly
* structured for npm publication. Exit code 0 = all pass, 1 = failures.
*
* Usage: bun run scripts/check-package.ts
Expand All @@ -25,7 +25,7 @@
import { readFileSync, existsSync, mkdtempSync, writeFileSync, rmSync } from 'fs';
import { join, resolve } from 'path';
import { execSync } from 'child_process';
import { Glob, $ } from 'bun';
import { Glob } from 'bun';
import { tmpdir } from 'os';

// ── Helpers ────────────────────────────────────────────────────────
Expand Down