Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Aug 20, 2024
1 parent 8926e6b commit 4830305
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/get-deps-to-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { existsSync } from 'node:fs';

if (!process.env.CHANGED_DIRS) throw new Error('CHANGED_DIRS is missing');

const json = execSync(`pnpm -r list --only-projects --json`).toString('utf8');
const json = execSync('pnpm -r list --only-projects --json').toString('utf8');
const repoPackages =
/** @type {Array<import("../packages/core/utils/common.ts").Package & { path: string, private: boolean, peerDependencies?: Record<string, string> }>} */ (
/** @type {Array<import('../packages/core/utils/common.ts').Package & { path: string, private: boolean, peerDependencies?: Record<string, string> }>} */ (
JSON.parse(json)
);

Expand Down

0 comments on commit 4830305

Please sign in to comment.