@seayoo-web/finder 2.0.11 → 2.0.12

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/dist/index.cjs CHANGED
@@ -150,7 +150,7 @@ async function deploy(option) {
150
150
  data: {
151
151
  path: zipMockName,
152
152
  file: { buffer, filename: zipMockName, contentType: "application/octet-stream" },
153
- payload: JSON.stringify(payload || "")
153
+ payload: payload ? JSON.stringify(payload) : ""
154
154
  }
155
155
  });
156
156
  if (status !== 200) {
package/dist/index.js CHANGED
@@ -148,7 +148,7 @@ async function deploy(option) {
148
148
  data: {
149
149
  path: zipMockName,
150
150
  file: { buffer, filename: zipMockName, contentType: "application/octet-stream" },
151
- payload: JSON.stringify(payload || "")
151
+ payload: payload ? JSON.stringify(payload) : ""
152
152
  }
153
153
  });
154
154
  if (status !== 200) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/finder",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "agent for web finder",
5
5
  "type": "module",
6
6
  "source": "index.ts",