-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): check if signal defined before usage in process.kill
- Loading branch information
1 parent
d03e687
commit ca21cbf
Showing
9 changed files
with
179 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Class: StaleProjectGraphCacheError | ||
|
||
## Hierarchy | ||
|
||
- `Error` | ||
|
||
↳ **`StaleProjectGraphCacheError`** | ||
|
||
## Table of contents | ||
|
||
### Constructors | ||
|
||
- [constructor](../../devkit/documents/StaleProjectGraphCacheError#constructor) | ||
|
||
### Properties | ||
|
||
- [cause](../../devkit/documents/StaleProjectGraphCacheError#cause): unknown | ||
- [message](../../devkit/documents/StaleProjectGraphCacheError#message): string | ||
- [name](../../devkit/documents/StaleProjectGraphCacheError#name): string | ||
- [stack](../../devkit/documents/StaleProjectGraphCacheError#stack): string | ||
- [prepareStackTrace](../../devkit/documents/StaleProjectGraphCacheError#preparestacktrace): Function | ||
- [stackTraceLimit](../../devkit/documents/StaleProjectGraphCacheError#stacktracelimit): number | ||
|
||
### Methods | ||
|
||
- [captureStackTrace](../../devkit/documents/StaleProjectGraphCacheError#capturestacktrace) | ||
|
||
## Constructors | ||
|
||
### constructor | ||
|
||
• **new StaleProjectGraphCacheError**(): [`StaleProjectGraphCacheError`](../../devkit/documents/StaleProjectGraphCacheError) | ||
|
||
#### Returns | ||
|
||
[`StaleProjectGraphCacheError`](../../devkit/documents/StaleProjectGraphCacheError) | ||
|
||
#### Overrides | ||
|
||
Error.constructor | ||
|
||
## Properties | ||
|
||
### cause | ||
|
||
• `Optional` **cause**: `unknown` | ||
|
||
#### Inherited from | ||
|
||
Error.cause | ||
|
||
--- | ||
|
||
### message | ||
|
||
• **message**: `string` | ||
|
||
#### Inherited from | ||
|
||
Error.message | ||
|
||
--- | ||
|
||
### name | ||
|
||
• **name**: `string` | ||
|
||
#### Inherited from | ||
|
||
Error.name | ||
|
||
--- | ||
|
||
### stack | ||
|
||
• `Optional` **stack**: `string` | ||
|
||
#### Inherited from | ||
|
||
Error.stack | ||
|
||
--- | ||
|
||
### prepareStackTrace | ||
|
||
▪ `Static` `Optional` **prepareStackTrace**: (`err`: `Error`, `stackTraces`: `CallSite`[]) => `any` | ||
|
||
Optional override for formatting stack traces | ||
|
||
**`See`** | ||
|
||
https://v8.dev/docs/stack-trace-api#customizing-stack-traces | ||
|
||
#### Type declaration | ||
|
||
▸ (`err`, `stackTraces`): `any` | ||
|
||
##### Parameters | ||
|
||
| Name | Type | | ||
| :------------ | :----------- | | ||
| `err` | `Error` | | ||
| `stackTraces` | `CallSite`[] | | ||
|
||
##### Returns | ||
|
||
`any` | ||
|
||
#### Inherited from | ||
|
||
Error.prepareStackTrace | ||
|
||
--- | ||
|
||
### stackTraceLimit | ||
|
||
▪ `Static` **stackTraceLimit**: `number` | ||
|
||
#### Inherited from | ||
|
||
Error.stackTraceLimit | ||
|
||
## Methods | ||
|
||
### captureStackTrace | ||
|
||
▸ **captureStackTrace**(`targetObject`, `constructorOpt?`): `void` | ||
|
||
Create .stack property on a target object | ||
|
||
#### Parameters | ||
|
||
| Name | Type | | ||
| :---------------- | :--------- | | ||
| `targetObject` | `object` | | ||
| `constructorOpt?` | `Function` | | ||
|
||
#### Returns | ||
|
||
`void` | ||
|
||
#### Inherited from | ||
|
||
Error.captureStackTrace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters