Skip to content

Commit 4830305

Browse files
committed
fix lint
1 parent 8926e6b commit 4830305

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/get-deps-to-publish.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import { existsSync } from 'node:fs';
1212

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

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

0 commit comments

Comments
 (0)