Skip to content

Commit c5d2851

Browse files
feat: build for release
1 parent b48d1dc commit c5d2851

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"release-github-actions","sha":"8c266f241ba341ed5ad3ff670194e0dcea36046e","ref":"refs/tags/test/v8.0.3.4029872018","tagName":"test/v8.0.3.4029872018","branch":"gh-actions","tags":["test/v8.0.3.4029872018","test/v8.0.3","test/v8.0","test/v8"],"updated_at":"2023-01-28T03:04:00.416Z"}
1+
{"owner":"technote-space","repo":"release-github-actions","sha":"a7eedc3776c50424cefc908eda74549a3deeda6b","ref":"refs/tags/test/v8.0.3.4050326849","tagName":"test/v8.0.3.4050326849","branch":"gh-actions","tags":["test/v8.0.3.4050326849","test/v8.0.3","test/v8.0","test/v8"],"updated_at":"2023-01-31T03:05:06.696Z"}

lib/index.cjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84632,7 +84632,9 @@ function fetch(url, opts) {
8463284632
return;
8463384633
}
8463484634

84635-
destroyStream(response.body, err);
84635+
if (response && response.body) {
84636+
destroyStream(response.body, err);
84637+
}
8463684638
});
8463784639

8463884640
/* c8 ignore next 18 */

lib/index.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84630,7 +84630,9 @@ function fetch(url, opts) {
8463084630
return;
8463184631
}
8463284632

84633-
destroyStream(response.body, err);
84633+
if (response && response.body) {
84634+
destroyStream(response.body, err);
84635+
}
8463484636
});
8463584637

8463684638
/* c8 ignore next 18 */

lib/main.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84669,7 +84669,9 @@ function fetch(url, opts) {
8466984669
return;
8467084670
}
8467184671

84672-
destroyStream(response.body, err);
84672+
if (response && response.body) {
84673+
destroyStream(response.body, err);
84674+
}
8467384675
});
8467484676

8467584677
/* c8 ignore next 18 */

node_modules/.yarn-integrity

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)