Skip to content

Commit 82f4b92

Browse files
bumped version with minor tweaks
1 parent 3fb1b45 commit 82f4b92

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,13 @@ Patch Pulse includes full intellisense support for configuration files:
5858
- **Documentation**: Hover tooltips with detailed explanations
5959
- **Examples**: See working examples for each option
6060

61-
To enable intellisense, add this to your `.patchpulserc` file:
61+
#### Option 1: Automatic (Recommended)
62+
63+
The schema is automatically available if you install `patch-pulse` locally. VS Code and other editors will provide intellisense without any additional setup.
64+
65+
#### Option 2: Explicit Schema Reference
66+
67+
For maximum compatibility, add this to your `.patchpulserc` file:
6268

6369
```json
6470
{
@@ -67,6 +73,8 @@ To enable intellisense, add this to your `.patchpulserc` file:
6773
}
6874
```
6975

76+
**Note**: The schema is hosted on npm via unpkg.com, so it works for anyone who has internet access, regardless of whether they've installed the package locally.
77+
7078
### Skip Patterns
7179

7280
The `skip` array supports multiple pattern types:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "patch-pulse",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Check for outdated npm dependencies",
55
"type": "module",
66
"main": "lib/index.js",
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$id": "https://unpkg.com/patch-pulse@latest/schemas/patchpulse-config.schema.json",
4+
"title": "Patch Pulse Configuration Schema",
5+
"description": "Configuration schema for Patch Pulse CLI tool",
6+
"type": "object",
7+
"properties": {
8+
"skip": {
9+
"type": "array",
10+
"description": "Array of package names or patterns to skip during dependency checking",
11+
"items": {
12+
"type": "string",
13+
"description": "Package name or pattern. Supports exact names, glob patterns (*, ?), and regex patterns",
14+
"examples": ["lodash", "@types/*", "test-*", ".*-dev", "^@angular/.*"]
15+
},
16+
"examples": [
17+
["lodash", "@types/*", "test-*"],
18+
["@angular/*", "rxjs", "zone\\.js"]
19+
]
20+
}
21+
},
22+
"additionalProperties": false,
23+
"examples": [
24+
{
25+
"skip": ["lodash", "@types/*", "test-*"]
26+
},
27+
{
28+
"skip": ["@angular/*", "rxjs", "zone\\.js", ".*-dev"]
29+
}
30+
]
31+
}

src/gen/version.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Auto-generated file - do not edit manually
2-
export const VERSION = '2.5.0';
2+
export const VERSION = '2.5.1';

0 commit comments

Comments
 (0)