mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
500 B
TypeScript
20 lines
500 B
TypeScript
import {dirname} from 'path';
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
let puppeteerDirname: string;
|
|
|
|
try {
|
|
// In some environments, like esbuild, this will throw an error.
|
|
// We suppress the error since the bundled binary is not expected
|
|
// to be used or installed in this case and, therefore, the
|
|
// root directory does not have to be known.
|
|
puppeteerDirname = dirname(require.resolve('./compat'));
|
|
} catch (error) {
|
|
// Fallback to __dirname.
|
|
puppeteerDirname = __dirname;
|
|
}
|
|
|
|
export {puppeteerDirname};
|