@eggjs/mock 6.1.0-beta.5 → 6.1.0-beta.7

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.
@@ -332,7 +332,8 @@ var require_conversions = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
332
332
  const v = hsv[2] / 100;
333
333
  const vmin = Math.max(v, .01);
334
334
  let sl;
335
- let l = (2 - s) * v;
335
+ let l;
336
+ l = (2 - s) * v;
336
337
  const lmin = (2 - s) * vmin;
337
338
  sl = s * vmin;
338
339
  sl /= lmin <= 1 ? lmin : 2 - lmin;
@@ -486,7 +487,8 @@ var require_conversions = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
486
487
  const l = lab[0];
487
488
  const a = lab[1];
488
489
  const b = lab[2];
489
- let h = Math.atan2(b, a) * 360 / 2 / Math.PI;
490
+ let h;
491
+ h = Math.atan2(b, a) * 360 / 2 / Math.PI;
490
492
  if (h < 0) h += 360;
491
493
  const c = Math.sqrt(a * a + b * b);
492
494
  return [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eggjs/mock",
3
- "version": "6.1.0-beta.5",
3
+ "version": "6.1.0-beta.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -76,10 +76,10 @@
76
76
  "sdk-base": "^5.0.1",
77
77
  "urllib": "^4.6.11",
78
78
  "utility": "^2.5.0",
79
- "@eggjs/core": "6.6.0-beta.5",
80
- "@eggjs/extend2": "4.1.0-beta.5",
81
- "@eggjs/supertest": "8.3.0-beta.5",
82
- "@eggjs/utils": "4.5.0-beta.5"
79
+ "@eggjs/core": "6.6.0-beta.7",
80
+ "@eggjs/extend2": "4.1.0-beta.7",
81
+ "@eggjs/supertest": "8.3.0-beta.7",
82
+ "@eggjs/utils": "4.5.0-beta.7"
83
83
  },
84
84
  "devDependencies": {
85
85
  "@eggjs/tegg": "^3.2.2",
@@ -94,8 +94,8 @@
94
94
  "tsd": "^0.33.0",
95
95
  "tsdown": "^0.15.0",
96
96
  "typescript": "5.9.2",
97
- "@eggjs/tsconfig": "3.1.0-beta.5",
98
- "egg": "4.1.0-beta.5"
97
+ "@eggjs/tsconfig": "3.1.0-beta.7",
98
+ "egg": "4.1.0-beta.7"
99
99
  },
100
100
  "scripts": {
101
101
  "build": "tsdown",