@sourcemeta/jsonschema 14.4.0 → 14.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.markdown CHANGED
@@ -134,7 +134,7 @@ Where `X.Y.Z` is replaced with the desired version. For example:
134
134
  uses: actions/checkout@v4
135
135
 
136
136
  - name: Install the JSON Schema CLI
137
- uses: sourcemeta/jsonschema@v14.4.0
137
+ uses: sourcemeta/jsonschema@v14.5.0
138
138
 
139
139
  # Then use as usual
140
140
  - run: jsonschema fmt path/to/schemas --check
package/npm/cli.js CHANGED
File without changes
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+
3
+ if (process.stdout.isTTY) {
4
+ console.log('');
5
+ console.log('Tip: Try the Sourcemeta Studio VS Code extension for an enhanced experience!');
6
+ console.log(' Open in VS Code: vscode:extension/sourcemeta.sourcemeta-studio');
7
+ console.log(' Or visit: https://marketplace.visualstudio.com/items?itemName=sourcemeta.sourcemeta-studio');
8
+ console.log('');
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sourcemeta/jsonschema",
3
- "version": "14.4.0",
3
+ "version": "14.5.0",
4
4
  "description": "The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines",
5
5
  "main": "npm/main.js",
6
6
  "exports": {
@@ -10,6 +10,9 @@
10
10
  "bin": {
11
11
  "jsonschema": "npm/cli.js"
12
12
  },
13
+ "scripts": {
14
+ "postinstall": "node npm/postinstall.js"
15
+ },
13
16
  "license": "AGPL-3.0",
14
17
  "homepage": "https://github.com/sourcemeta/jsonschema",
15
18
  "author": {