WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit e4bf40d

Browse files
committed
Freshen generated index.js file.
1 parent ae047c4 commit e4bf40d

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

dist/index.mjs

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16841,7 +16841,7 @@ const {
1684116841
/** @type {import('http2')} */
1684216842
let http2
1684316843
try {
16844-
http2 = __nccwpck_require__(8056)
16844+
http2 = __nccwpck_require__(5675)
1684516845
} catch {
1684616846
// @ts-ignore
1684716847
http2 = { constants: {} }
@@ -35994,7 +35994,7 @@ module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("http");
3599435994

3599535995
/***/ }),
3599635996

35997-
/***/ 8056:
35997+
/***/ 5675:
3599835998
/***/ ((module) => {
3599935999

3600036000
module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("http2");
@@ -36043,6 +36043,13 @@ module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/
3604336043

3604436044
/***/ }),
3604536045

36046+
/***/ 6466:
36047+
/***/ ((module) => {
36048+
36049+
module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises");
36050+
36051+
/***/ }),
36052+
3604636053
/***/ 7975:
3604736054
/***/ ((module) => {
3604836055

@@ -47706,8 +47713,8 @@ const external_node_process_namespaceObject = __WEBPACK_EXTERNAL_createRequire(i
4770647713
var external_node_stream_ = __nccwpck_require__(7075);
4770747714
// EXTERNAL MODULE: external "node:events"
4770847715
var external_node_events_ = __nccwpck_require__(8474);
47709-
;// CONCATENATED MODULE: external "node:stream/promises"
47710-
const promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises");
47716+
// EXTERNAL MODULE: external "node:stream/promises"
47717+
var promises_ = __nccwpck_require__(6466);
4771147718
;// CONCATENATED MODULE: ./node_modules/@sindresorhus/merge-streams/index.js
4771247719

4771347720

@@ -47817,7 +47824,7 @@ const onMergedStreamFinished = async (passThroughStream, streams, unpipeEvent) =
4781747824

4781847825
const onMergedStreamEnd = async (passThroughStream, {signal}) => {
4781947826
try {
47820-
await (0,promises_namespaceObject.finished)(passThroughStream, {signal, cleanup: true});
47827+
await (0,promises_.finished)(passThroughStream, {signal, cleanup: true});
4782147828
} catch (error) {
4782247829
errorOrAbortStream(passThroughStream, error);
4782347830
throw error;
@@ -47891,7 +47898,7 @@ const afterMergedStreamFinished = async (onFinished, stream, {signal}) => {
4789147898

4789247899
const onInputStreamEnd = async ({passThroughStream, stream, streams, ended, aborted, controller: {signal}}) => {
4789347900
try {
47894-
await (0,promises_namespaceObject.finished)(stream, {
47901+
await (0,promises_.finished)(stream, {
4789547902
signal,
4789647903
cleanup: true,
4789747904
readable: true,
@@ -73002,7 +73009,7 @@ const pathPosix = external_node_path_namespaceObject.posix;
7300273009

7300373010
// Variables
7300473011
const packageName = "markdownlint-cli2";
73005-
const packageVersion = "0.19.0";
73012+
const packageVersion = "0.19.1";
7300673013
const libraryName = "markdownlint";
7300773014
const libraryVersion = getVersion();
7300873015
const bannerMessage = `${packageName} v${packageVersion} (${libraryName} v${libraryVersion})`;
@@ -74048,7 +74055,11 @@ const markdownlint_cli2_main = async (/** @type {Parameters} */ params) => {
7404874055
logMessage(`Summary: ${results.length} error(s)`);
7404974056
}
7405074057
if (formattingContext.formatting) {
74051-
console.log(formattingContext.formatted);
74058+
const { pipeline } = await Promise.resolve(/* import() */).then(__nccwpck_require__.t.bind(__nccwpck_require__, 6466, 19));
74059+
await pipeline(
74060+
String(formattingContext.formatted),
74061+
process.stdout
74062+
);
7405274063
} else {
7405374064
const outputFormatters =
7405474065
(optionsOverride && optionsOverride.outputFormatters) ||

0 commit comments

Comments
 (0)