@quobix/vacuum 0.0.26 → 0.0.27

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 +5 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -141,17 +141,15 @@ vacuum is available as a container, you can pull the image from
141
141
  docker pull dshanley/vacuum
142
142
  ```
143
143
 
144
- or you can pull it from [Github packages](https://github.com/daveshanley/vacuum/pkgs/container/vacuum).
144
+ To run, mount the current working dir to the container and use a relative path to your spec, like so
145
145
 
146
146
  ```
147
- docker pull ghcr.io/daveshanley/vacuum:latest
147
+ docker run --rm -v $PWD:/work:ro dshanley/vacuum lint <your-openapi-spec.yaml>
148
148
  ```
149
149
 
150
- To run, just add `docker dshanley/vacuum` as your command, like so
151
-
152
- ```
153
- docker dshanley/vacuum lint <your-openapi-spec.yaml>
154
- ```
150
+ Alternatively, you can pull it from
151
+ [Github packages](https://github.com/daveshanley/vacuum/pkgs/container/vacuum).
152
+ To do that, replace `dshanley/vacuum` with `ghcr.io/daveshanley/vacuum` in the above commands.
155
153
 
156
154
  ## Build an interactive HTML report
157
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quobix/vacuum",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "The world's fastest, most scalable and complete OpenAPI parser",
5
5
  "type": "module",
6
6
  "author": "Dave Shanley",