@apifuse/provider-sdk 2.1.0-beta.16 → 2.1.0-beta.17

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @apifuse/provider-sdk Changelog
2
2
 
3
+ ## 2.1.0-beta.17
4
+
5
+ - Release candidate for main commit c4466ffc8a30cb99740b50687a62b92cec9ba10e.
6
+
3
7
  ## 2.1.0-beta.16
4
8
 
5
9
  - Release candidate for main commit c0d8a1c4be519e1c1abc59e0304efc64f371634d.
@@ -461,7 +461,6 @@ function renderPackageJson(input) {
461
461
  "submit-check": "apifuse submit-check . --markdown submission-report.md",
462
462
  test: "apifuse test .",
463
463
  record: "apifuse record .",
464
- "perf:sample": "apifuse perf . --operation ping --runs 3",
465
464
  start: "bun start.ts",
466
465
  },
467
466
  dependencies: {
@@ -9,6 +9,7 @@ bun run dev
9
9
  bun run check
10
10
  bun run test
11
11
  bun run submit-check
12
+ bunx apifuse perf . --operation <operation-id> --runs 3
12
13
  ```
13
14
 
14
15
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.1.0-beta.16",
2
+ "version": "2.1.0-beta.17",
3
3
  "name": "@apifuse/provider-sdk",
4
4
  "private": false,
5
5
  "type": "module",
package/src/cli/create.ts CHANGED
@@ -629,7 +629,6 @@ function renderPackageJson(input: {
629
629
  "apifuse submit-check . --markdown submission-report.md",
630
630
  test: "apifuse test .",
631
631
  record: "apifuse record .",
632
- "perf:sample": "apifuse perf . --operation ping --runs 3",
633
632
  start: "bun start.ts",
634
633
  },
635
634
  dependencies: {
@@ -9,6 +9,7 @@ bun run dev
9
9
  bun run check
10
10
  bun run test
11
11
  bun run submit-check
12
+ bunx apifuse perf . --operation <operation-id> --runs 3
12
13
  ```
13
14
 
14
15