openapi-sync 1.0.13 → 1.0.14

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 (3) hide show
  1. package/README.md +2 -2
  2. package/bin/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -24,9 +24,9 @@ npx openapi-sync
24
24
 
25
25
  You can also add it as a script in your package.json for easy access:
26
26
 
27
- ```bash
27
+ ```json
28
28
  "scripts": {
29
- "api-sync": "openapi-sync",
29
+ "api-sync": "npx openapi-sync",
30
30
  }
31
31
  ```
32
32
 
package/bin/cli.js CHANGED
@@ -10,7 +10,7 @@ const argv = yargs(hideBin(process.argv))
10
10
  .option("refreshinterval", {
11
11
  alias: "ri",
12
12
  type: "number",
13
- description: "Interval at which to refretch specifiations",
13
+ description: "Interval at which to refetch specifiations",
14
14
  })
15
15
  .help().argv;
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openapi-sync",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "sync openapi variables",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",