fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3565 from hey-api/refactor/deps-open

fix: remove dynamic import of open

authored by

Lubos and committed by
GitHub
236360b0 a23e15f9

+1 -1
+1 -1
packages/shared/src/error.ts
··· 2 2 import path from 'node:path'; 3 3 4 4 import colors from 'ansi-colors'; 5 + import open from 'open'; 5 6 6 7 import { ensureDirSync } from './fs'; 7 8 import { loadPackageJson } from './tsConfig'; ··· 153 154 title: 'Crash Report', 154 155 }); 155 156 const url = `${packageJson.bugs.url}new?${search.toString()}`; 156 - const open = (await import('open')).default; 157 157 await open(url); 158 158 } 159 159