/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/create-jest/src/errors.ts
24 строки
781 B
Ilya Kuznetsov
feat(create-jest): Add `npm init` / `yarn create` initialiser (#14453)
07 сен 2023, 12:12
Не верифицирован
07 сен 2023, 12:12
0b0cf73
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export class NotFoundPackageJsonError extends Error { constructor(rootDir: string) { super(`Could not find a "package.json" file in ${rootDir}`); this.name = ''; // eslint-disable-next-line @typescript-eslint/no-empty-function Error.captureStackTrace(this, () => {}); } } export class MalformedPackageJsonError extends Error { constructor(packageJsonPath: string) { super(`There is malformed json in ${packageJsonPath}`); this.name = ''; // eslint-disable-next-line @typescript-eslint/no-empty-function Error.captureStackTrace(this, () => {}); } }