@lintel/lintel 0.0.8 → 0.0.10

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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -9,11 +9,14 @@
9
9
 
10
10
  [![CI][ci-badge]][ci-url]
11
11
  [![crates.io][crates-badge]][crates-url]
12
+ [![npm][npm-badge]][npm-url]
12
13
 
13
14
  [ci-badge]: https://github.com/lintel-rs/lintel/actions/workflows/ci.yml/badge.svg
14
15
  [ci-url]: https://github.com/lintel-rs/lintel/actions/workflows/ci.yml
15
16
  [crates-badge]: https://img.shields.io/crates/v/lintel?color=60a5fa
16
17
  [crates-url]: https://crates.io/crates/lintel
18
+ [npm-badge]: https://img.shields.io/npm/v/@lintel/lintel?color=60a5fa
19
+ [npm-url]: https://www.npmjs.com/package/@lintel/lintel
17
20
 
18
21
  </div>
19
22
 
@@ -31,10 +34,12 @@
31
34
  cargo install lintel
32
35
  ```
33
36
 
34
- Or with npm:
37
+ Or with [npm](https://www.npmjs.com/package/@lintel/lintel):
35
38
 
36
39
  ```shell
37
- npx lintel check
40
+ npx @lintel/lintel check
41
+ bunx @lintel/lintel check
42
+ pnpx @lintel/lintel check
38
43
  ```
39
44
 
40
45
  Or with Nix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lintel/lintel",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Schema validation for your entire repo",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -26,10 +26,10 @@
26
26
  "README.md"
27
27
  ],
28
28
  "optionalDependencies": {
29
- "@lintel/cli-darwin-arm64": "0.0.8",
30
- "@lintel/cli-darwin-x64": "0.0.8",
31
- "@lintel/cli-linux-arm64": "0.0.8",
32
- "@lintel/cli-linux-x64": "0.0.8",
33
- "@lintel/cli-win32-x64": "0.0.8"
29
+ "@lintel/cli-darwin-arm64": "0.0.10",
30
+ "@lintel/cli-darwin-x64": "0.0.10",
31
+ "@lintel/cli-linux-arm64": "0.0.10",
32
+ "@lintel/cli-linux-x64": "0.0.10",
33
+ "@lintel/cli-win32-x64": "0.0.10"
34
34
  }
35
35
  }