@stdy/cli 0.15.0 → 0.15.2

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 +10 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,10 +1,16 @@
1
1
  # Steady
2
2
 
3
+ _Pronounced /ˈstiːdi/, like "steed-y"_
4
+
3
5
  OpenAPI 3.0/3.1 mock server built to fast and reliable. Validates requests
4
6
  against specs and generates responses from schemas or examples.
5
7
 
6
8
  Note: this project is still experiemental and not ready for production use.
7
9
 
10
+ ![](./assets/logo.png)
11
+
12
+ _Note from the artist: the sword is to fight off bugs in your sdks_
13
+
8
14
  ## Installation
9
15
 
10
16
  ```bash
@@ -419,3 +425,7 @@ deno task lint # Lint
419
425
  deno task fmt # Format
420
426
  deno task check-boundaries # Verify package dependencies
421
427
  ```
428
+
429
+ ## Acknowledgements
430
+
431
+ Thanks to Stephen Downward for contributing the logo design.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdy/cli",
3
- "version": "0.15.0",
3
+ "version": "0.15.2",
4
4
  "description": "OpenAPI 3 mock server. Validates SDKs against OpenAPI specs with clear error attribution.",
5
5
  "license": "Elastic-2.0",
6
6
  "repository": {
@@ -29,10 +29,10 @@
29
29
  "node": ">=14.0.0"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@stdy/cli-linux-x64": "0.15.0",
33
- "@stdy/cli-linux-arm64": "0.15.0",
34
- "@stdy/cli-darwin-x64": "0.15.0",
35
- "@stdy/cli-darwin-arm64": "0.15.0",
36
- "@stdy/cli-win32-x64": "0.15.0"
32
+ "@stdy/cli-linux-x64": "0.15.2",
33
+ "@stdy/cli-linux-arm64": "0.15.2",
34
+ "@stdy/cli-darwin-x64": "0.15.2",
35
+ "@stdy/cli-darwin-arm64": "0.15.2",
36
+ "@stdy/cli-win32-x64": "0.15.2"
37
37
  }
38
38
  }