@rsbuild/core 1.2.0-beta.0 → 1.2.0
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/compiled/chokidar/index.js +21 -21
- package/compiled/connect/index.js +49 -49
- package/compiled/connect-history-api-fallback/index.js +4 -4
- package/compiled/cors/index.js +6 -6
- package/compiled/css-loader/index.js +173 -192
- package/compiled/html-rspack-plugin/index.js +24 -24
- package/compiled/http-proxy-middleware/index.js +149 -151
- package/compiled/jiti/index.js +22 -22
- package/compiled/launch-editor-middleware/index.js +36 -36
- package/compiled/on-finished/index.js +6 -6
- package/compiled/open/index.js +19 -19
- package/compiled/picocolors/index.js +2 -2
- package/compiled/postcss/index.js +177 -163
- package/compiled/postcss/package.json +1 -1
- package/compiled/postcss-load-config/index.js +26 -26
- package/compiled/postcss-loader/index.js +17 -37
- package/compiled/rsbuild-dev-middleware/index.js +140 -140
- package/compiled/rspack-chain/index.js +85 -85
- package/compiled/rspack-manifest-plugin/index.js +12 -12
- package/compiled/sirv/index.js +18 -18
- package/compiled/style-loader/index.js +13 -13
- package/compiled/tinyglobby/index.js +70 -70
- package/compiled/webpack-bundle-analyzer/index.js +197 -197
- package/compiled/webpack-merge/index.js +29 -29
- package/compiled/ws/index.js +81 -81
- package/dist/index.cjs +190 -155
- package/dist/index.js +190 -155
- package/dist-types/configChain.d.ts +2 -0
- package/dist-types/helpers/fs.d.ts +1 -1
- package/dist-types/helpers/path.d.ts +6 -0
- package/dist-types/index.d.ts +2 -1
- package/dist-types/plugins/css.d.ts +2 -1
- package/dist-types/types/config.d.ts +18 -3
- package/dist-types/types/plugin.d.ts +11 -0
- package/package.json +8 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
"use strict";
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
|
-
|
|
4
|
+
187: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.NodeFsHandler =
|
|
7
7
|
exports.EVENTS =
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
exports.STR_END =
|
|
17
17
|
exports.STR_DATA =
|
|
18
18
|
void 0;
|
|
19
|
-
const fs_1 = __nccwpck_require__(
|
|
20
|
-
const promises_1 = __nccwpck_require__(
|
|
21
|
-
const sysPath = __nccwpck_require__(
|
|
22
|
-
const os_1 = __nccwpck_require__(
|
|
19
|
+
const fs_1 = __nccwpck_require__(896);
|
|
20
|
+
const promises_1 = __nccwpck_require__(943);
|
|
21
|
+
const sysPath = __nccwpck_require__(928);
|
|
22
|
+
const os_1 = __nccwpck_require__(857);
|
|
23
23
|
exports.STR_DATA = "data";
|
|
24
24
|
exports.STR_END = "end";
|
|
25
25
|
exports.STR_CLOSE = "close";
|
|
@@ -803,15 +803,15 @@
|
|
|
803
803
|
}
|
|
804
804
|
exports.NodeFsHandler = NodeFsHandler;
|
|
805
805
|
},
|
|
806
|
-
|
|
806
|
+
300: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
807
807
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
808
808
|
exports.readdirpPromise =
|
|
809
809
|
exports.readdirp =
|
|
810
810
|
exports.ReaddirpStream =
|
|
811
811
|
void 0;
|
|
812
|
-
const promises_1 = __nccwpck_require__(
|
|
813
|
-
const stream_1 = __nccwpck_require__(
|
|
814
|
-
const path_1 = __nccwpck_require__(
|
|
812
|
+
const promises_1 = __nccwpck_require__(943);
|
|
813
|
+
const stream_1 = __nccwpck_require__(203);
|
|
814
|
+
const path_1 = __nccwpck_require__(928);
|
|
815
815
|
function defaultOptions() {
|
|
816
816
|
return {
|
|
817
817
|
root: ".",
|
|
@@ -1055,22 +1055,22 @@
|
|
|
1055
1055
|
exports.readdirpPromise = readdirpPromise;
|
|
1056
1056
|
exports["default"] = exports.readdirp;
|
|
1057
1057
|
},
|
|
1058
|
-
|
|
1058
|
+
434: (module) => {
|
|
1059
1059
|
module.exports = require("events");
|
|
1060
1060
|
},
|
|
1061
|
-
|
|
1061
|
+
896: (module) => {
|
|
1062
1062
|
module.exports = require("fs");
|
|
1063
1063
|
},
|
|
1064
|
-
|
|
1064
|
+
943: (module) => {
|
|
1065
1065
|
module.exports = require("fs/promises");
|
|
1066
1066
|
},
|
|
1067
|
-
|
|
1067
|
+
857: (module) => {
|
|
1068
1068
|
module.exports = require("os");
|
|
1069
1069
|
},
|
|
1070
|
-
|
|
1070
|
+
928: (module) => {
|
|
1071
1071
|
module.exports = require("path");
|
|
1072
1072
|
},
|
|
1073
|
-
|
|
1073
|
+
203: (module) => {
|
|
1074
1074
|
module.exports = require("stream");
|
|
1075
1075
|
},
|
|
1076
1076
|
};
|
|
@@ -1103,12 +1103,12 @@
|
|
|
1103
1103
|
exports.FSWatcher = exports.WatchHelper = void 0;
|
|
1104
1104
|
exports.watch = watch;
|
|
1105
1105
|
/*! chokidar - MIT License (c) 2012 Paul Miller (paulmillr.com) */ const fs_1 =
|
|
1106
|
-
__nccwpck_require__(
|
|
1107
|
-
const promises_1 = __nccwpck_require__(
|
|
1108
|
-
const events_1 = __nccwpck_require__(
|
|
1109
|
-
const sysPath = __nccwpck_require__(
|
|
1110
|
-
const readdirp_1 = __nccwpck_require__(
|
|
1111
|
-
const handler_js_1 = __nccwpck_require__(
|
|
1106
|
+
__nccwpck_require__(896);
|
|
1107
|
+
const promises_1 = __nccwpck_require__(943);
|
|
1108
|
+
const events_1 = __nccwpck_require__(434);
|
|
1109
|
+
const sysPath = __nccwpck_require__(928);
|
|
1110
|
+
const readdirp_1 = __nccwpck_require__(300);
|
|
1111
|
+
const handler_js_1 = __nccwpck_require__(187);
|
|
1112
1112
|
const SLASH = "/";
|
|
1113
1113
|
const SLASH_SLASH = "//";
|
|
1114
1114
|
const ONE_DOT = ".";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
|
-
|
|
3
|
+
718: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
4
4
|
"use strict";
|
|
5
5
|
/*!
|
|
6
6
|
* connect
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
* Copyright(c) 2011 TJ Holowaychuk
|
|
9
9
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
10
10
|
* MIT Licensed
|
|
11
|
-
*/ var debug = __nccwpck_require__(
|
|
12
|
-
var EventEmitter = __nccwpck_require__(
|
|
13
|
-
var finalhandler = __nccwpck_require__(
|
|
14
|
-
var http = __nccwpck_require__(
|
|
15
|
-
var merge = __nccwpck_require__(
|
|
16
|
-
var parseUrl = __nccwpck_require__(
|
|
11
|
+
*/ var debug = __nccwpck_require__(408)("connect:dispatcher");
|
|
12
|
+
var EventEmitter = __nccwpck_require__(434).EventEmitter;
|
|
13
|
+
var finalhandler = __nccwpck_require__(260);
|
|
14
|
+
var http = __nccwpck_require__(611);
|
|
15
|
+
var merge = __nccwpck_require__(670);
|
|
16
|
+
var parseUrl = __nccwpck_require__(405);
|
|
17
17
|
module.exports = createServer;
|
|
18
18
|
var env = process.env.NODE_ENV || "development";
|
|
19
19
|
var proto = {};
|
|
@@ -143,8 +143,8 @@
|
|
|
143
143
|
: undefined;
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
|
-
|
|
147
|
-
exports = module.exports = __nccwpck_require__(
|
|
146
|
+
932: (module, exports, __nccwpck_require__) => {
|
|
147
|
+
exports = module.exports = __nccwpck_require__(55);
|
|
148
148
|
exports.log = log;
|
|
149
149
|
exports.formatArgs = formatArgs;
|
|
150
150
|
exports.save = save;
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
} catch (e) {}
|
|
253
253
|
}
|
|
254
254
|
},
|
|
255
|
-
|
|
255
|
+
55: (module, exports, __nccwpck_require__) => {
|
|
256
256
|
exports =
|
|
257
257
|
module.exports =
|
|
258
258
|
createDebug.debug =
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
exports.disable = disable;
|
|
263
263
|
exports.enable = enable;
|
|
264
264
|
exports.enabled = enabled;
|
|
265
|
-
exports.humanize = __nccwpck_require__(
|
|
265
|
+
exports.humanize = __nccwpck_require__(916);
|
|
266
266
|
exports.names = [];
|
|
267
267
|
exports.skips = [];
|
|
268
268
|
exports.formatters = {};
|
|
@@ -360,17 +360,17 @@
|
|
|
360
360
|
return val;
|
|
361
361
|
}
|
|
362
362
|
},
|
|
363
|
-
|
|
363
|
+
408: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
364
364
|
if (typeof process !== "undefined" && process.type === "renderer") {
|
|
365
|
-
module.exports = __nccwpck_require__(
|
|
365
|
+
module.exports = __nccwpck_require__(932);
|
|
366
366
|
} else {
|
|
367
|
-
module.exports = __nccwpck_require__(
|
|
367
|
+
module.exports = __nccwpck_require__(190);
|
|
368
368
|
}
|
|
369
369
|
},
|
|
370
|
-
|
|
371
|
-
var tty = __nccwpck_require__(
|
|
372
|
-
var util = __nccwpck_require__(
|
|
373
|
-
exports = module.exports = __nccwpck_require__(
|
|
370
|
+
190: (module, exports, __nccwpck_require__) => {
|
|
371
|
+
var tty = __nccwpck_require__(18);
|
|
372
|
+
var util = __nccwpck_require__(23);
|
|
373
|
+
exports = module.exports = __nccwpck_require__(55);
|
|
374
374
|
exports.init = init;
|
|
375
375
|
exports.log = log;
|
|
376
376
|
exports.formatArgs = formatArgs;
|
|
@@ -466,13 +466,13 @@
|
|
|
466
466
|
}
|
|
467
467
|
break;
|
|
468
468
|
case "FILE":
|
|
469
|
-
var fs = __nccwpck_require__(
|
|
469
|
+
var fs = __nccwpck_require__(896);
|
|
470
470
|
stream = new fs.SyncWriteStream(fd, { autoClose: false });
|
|
471
471
|
stream._type = "fs";
|
|
472
472
|
break;
|
|
473
473
|
case "PIPE":
|
|
474
474
|
case "TCP":
|
|
475
|
-
var net = __nccwpck_require__(
|
|
475
|
+
var net = __nccwpck_require__(278);
|
|
476
476
|
stream = new net.Socket({ fd, readable: false, writable: true });
|
|
477
477
|
stream.readable = false;
|
|
478
478
|
stream.read = null;
|
|
@@ -497,7 +497,7 @@
|
|
|
497
497
|
}
|
|
498
498
|
exports.enable(load());
|
|
499
499
|
},
|
|
500
|
-
|
|
500
|
+
997: (module) => {
|
|
501
501
|
"use strict";
|
|
502
502
|
/*!
|
|
503
503
|
* ee-first
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
};
|
|
550
550
|
}
|
|
551
551
|
},
|
|
552
|
-
|
|
552
|
+
131: (module) => {
|
|
553
553
|
"use strict";
|
|
554
554
|
/*!
|
|
555
555
|
* encodeurl
|
|
@@ -570,7 +570,7 @@
|
|
|
570
570
|
.replace(ENCODE_CHARS_REGEXP, encodeURI);
|
|
571
571
|
}
|
|
572
572
|
},
|
|
573
|
-
|
|
573
|
+
754: (module) => {
|
|
574
574
|
"use strict";
|
|
575
575
|
/*!
|
|
576
576
|
* escape-html
|
|
@@ -621,19 +621,19 @@
|
|
|
621
621
|
: html;
|
|
622
622
|
}
|
|
623
623
|
},
|
|
624
|
-
|
|
624
|
+
260: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
625
625
|
"use strict";
|
|
626
626
|
/*!
|
|
627
627
|
* finalhandler
|
|
628
628
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
629
629
|
* MIT Licensed
|
|
630
|
-
*/ var debug = __nccwpck_require__(
|
|
631
|
-
var encodeUrl = __nccwpck_require__(
|
|
632
|
-
var escapeHtml = __nccwpck_require__(
|
|
633
|
-
var onFinished = __nccwpck_require__(
|
|
634
|
-
var parseUrl = __nccwpck_require__(
|
|
635
|
-
var statuses = __nccwpck_require__(
|
|
636
|
-
var unpipe = __nccwpck_require__(
|
|
630
|
+
*/ var debug = __nccwpck_require__(408)("finalhandler");
|
|
631
|
+
var encodeUrl = __nccwpck_require__(131);
|
|
632
|
+
var escapeHtml = __nccwpck_require__(754);
|
|
633
|
+
var onFinished = __nccwpck_require__(551);
|
|
634
|
+
var parseUrl = __nccwpck_require__(405);
|
|
635
|
+
var statuses = __nccwpck_require__(874);
|
|
636
|
+
var unpipe = __nccwpck_require__(853);
|
|
637
637
|
var DOUBLE_SPACE_REGEXP = /\x20{2}/g;
|
|
638
638
|
var NEWLINE_REGEXP = /\n/g;
|
|
639
639
|
var defer =
|
|
@@ -793,7 +793,7 @@
|
|
|
793
793
|
}
|
|
794
794
|
}
|
|
795
795
|
},
|
|
796
|
-
|
|
796
|
+
916: (module) => {
|
|
797
797
|
var s = 1e3;
|
|
798
798
|
var m = s * 60;
|
|
799
799
|
var h = m * 60;
|
|
@@ -899,7 +899,7 @@
|
|
|
899
899
|
return Math.ceil(ms / n) + " " + name + "s";
|
|
900
900
|
}
|
|
901
901
|
},
|
|
902
|
-
|
|
902
|
+
551: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
903
903
|
"use strict";
|
|
904
904
|
/*!
|
|
905
905
|
* on-finished
|
|
@@ -908,7 +908,7 @@
|
|
|
908
908
|
* MIT Licensed
|
|
909
909
|
*/ module.exports = onFinished;
|
|
910
910
|
module.exports.isFinished = isFinished;
|
|
911
|
-
var first = __nccwpck_require__(
|
|
911
|
+
var first = __nccwpck_require__(997);
|
|
912
912
|
var defer =
|
|
913
913
|
typeof setImmediate === "function"
|
|
914
914
|
? setImmediate
|
|
@@ -994,14 +994,14 @@
|
|
|
994
994
|
};
|
|
995
995
|
}
|
|
996
996
|
},
|
|
997
|
-
|
|
997
|
+
405: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
998
998
|
"use strict";
|
|
999
999
|
/*!
|
|
1000
1000
|
* parseurl
|
|
1001
1001
|
* Copyright(c) 2014 Jonathan Ong
|
|
1002
1002
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
1003
1003
|
* MIT Licensed
|
|
1004
|
-
*/ var url = __nccwpck_require__(
|
|
1004
|
+
*/ var url = __nccwpck_require__(16);
|
|
1005
1005
|
var parse = url.parse;
|
|
1006
1006
|
var Url = url.Url;
|
|
1007
1007
|
module.exports = parseurl;
|
|
@@ -1078,14 +1078,14 @@
|
|
|
1078
1078
|
);
|
|
1079
1079
|
}
|
|
1080
1080
|
},
|
|
1081
|
-
|
|
1081
|
+
874: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
1082
1082
|
"use strict";
|
|
1083
1083
|
/*!
|
|
1084
1084
|
* statuses
|
|
1085
1085
|
* Copyright(c) 2014 Jonathan Ong
|
|
1086
1086
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
1087
1087
|
* MIT Licensed
|
|
1088
|
-
*/ var codes = __nccwpck_require__(
|
|
1088
|
+
*/ var codes = __nccwpck_require__(595);
|
|
1089
1089
|
module.exports = status;
|
|
1090
1090
|
status.STATUS_CODES = codes;
|
|
1091
1091
|
status.codes = populateStatusesMap(status, codes);
|
|
@@ -1130,7 +1130,7 @@
|
|
|
1130
1130
|
return n;
|
|
1131
1131
|
}
|
|
1132
1132
|
},
|
|
1133
|
-
|
|
1133
|
+
853: (module) => {
|
|
1134
1134
|
"use strict";
|
|
1135
1135
|
/*!
|
|
1136
1136
|
* unpipe
|
|
@@ -1168,7 +1168,7 @@
|
|
|
1168
1168
|
}
|
|
1169
1169
|
}
|
|
1170
1170
|
},
|
|
1171
|
-
|
|
1171
|
+
670: (module, exports) => {
|
|
1172
1172
|
exports = module.exports = function (a, b) {
|
|
1173
1173
|
if (a && b) {
|
|
1174
1174
|
for (var key in b) {
|
|
@@ -1178,35 +1178,35 @@
|
|
|
1178
1178
|
return a;
|
|
1179
1179
|
};
|
|
1180
1180
|
},
|
|
1181
|
-
|
|
1181
|
+
434: (module) => {
|
|
1182
1182
|
"use strict";
|
|
1183
1183
|
module.exports = require("events");
|
|
1184
1184
|
},
|
|
1185
|
-
|
|
1185
|
+
896: (module) => {
|
|
1186
1186
|
"use strict";
|
|
1187
1187
|
module.exports = require("fs");
|
|
1188
1188
|
},
|
|
1189
|
-
|
|
1189
|
+
611: (module) => {
|
|
1190
1190
|
"use strict";
|
|
1191
1191
|
module.exports = require("http");
|
|
1192
1192
|
},
|
|
1193
|
-
|
|
1193
|
+
278: (module) => {
|
|
1194
1194
|
"use strict";
|
|
1195
1195
|
module.exports = require("net");
|
|
1196
1196
|
},
|
|
1197
|
-
|
|
1197
|
+
18: (module) => {
|
|
1198
1198
|
"use strict";
|
|
1199
1199
|
module.exports = require("tty");
|
|
1200
1200
|
},
|
|
1201
|
-
|
|
1201
|
+
16: (module) => {
|
|
1202
1202
|
"use strict";
|
|
1203
1203
|
module.exports = require("url");
|
|
1204
1204
|
},
|
|
1205
|
-
|
|
1205
|
+
23: (module) => {
|
|
1206
1206
|
"use strict";
|
|
1207
1207
|
module.exports = require("util");
|
|
1208
1208
|
},
|
|
1209
|
-
|
|
1209
|
+
595: (module) => {
|
|
1210
1210
|
"use strict";
|
|
1211
1211
|
module.exports = JSON.parse(
|
|
1212
1212
|
'{"100":"Continue","101":"Switching Protocols","102":"Processing","103":"Early Hints","200":"OK","201":"Created","202":"Accepted","203":"Non-Authoritative Information","204":"No Content","205":"Reset Content","206":"Partial Content","207":"Multi-Status","208":"Already Reported","226":"IM Used","300":"Multiple Choices","301":"Moved Permanently","302":"Found","303":"See Other","304":"Not Modified","305":"Use Proxy","306":"(Unused)","307":"Temporary Redirect","308":"Permanent Redirect","400":"Bad Request","401":"Unauthorized","402":"Payment Required","403":"Forbidden","404":"Not Found","405":"Method Not Allowed","406":"Not Acceptable","407":"Proxy Authentication Required","408":"Request Timeout","409":"Conflict","410":"Gone","411":"Length Required","412":"Precondition Failed","413":"Payload Too Large","414":"URI Too Long","415":"Unsupported Media Type","416":"Range Not Satisfiable","417":"Expectation Failed","418":"I\'m a teapot","421":"Misdirected Request","422":"Unprocessable Entity","423":"Locked","424":"Failed Dependency","425":"Unordered Collection","426":"Upgrade Required","428":"Precondition Required","429":"Too Many Requests","431":"Request Header Fields Too Large","451":"Unavailable For Legal Reasons","500":"Internal Server Error","501":"Not Implemented","502":"Bad Gateway","503":"Service Unavailable","504":"Gateway Timeout","505":"HTTP Version Not Supported","506":"Variant Also Negotiates","507":"Insufficient Storage","508":"Loop Detected","509":"Bandwidth Limit Exceeded","510":"Not Extended","511":"Network Authentication Required"}',
|
|
@@ -1235,6 +1235,6 @@
|
|
|
1235
1235
|
}
|
|
1236
1236
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
1237
1237
|
__nccwpck_require__.ab = __dirname + "/";
|
|
1238
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
1238
|
+
var __webpack_exports__ = __nccwpck_require__(718);
|
|
1239
1239
|
module.exports = __webpack_exports__;
|
|
1240
1240
|
})();
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
"use strict";
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
|
-
|
|
5
|
-
var url = __nccwpck_require__(
|
|
4
|
+
40: (module, exports, __nccwpck_require__) => {
|
|
5
|
+
var url = __nccwpck_require__(16);
|
|
6
6
|
exports = module.exports = function historyApiFallback(options) {
|
|
7
7
|
options = options || {};
|
|
8
8
|
var logger = getLogger(options);
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
return function () {};
|
|
119
119
|
}
|
|
120
120
|
},
|
|
121
|
-
|
|
121
|
+
16: (module) => {
|
|
122
122
|
module.exports = require("url");
|
|
123
123
|
},
|
|
124
124
|
};
|
|
@@ -144,6 +144,6 @@
|
|
|
144
144
|
}
|
|
145
145
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
146
146
|
__nccwpck_require__.ab = __dirname + "/";
|
|
147
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
147
|
+
var __webpack_exports__ = __nccwpck_require__(40);
|
|
148
148
|
module.exports = __webpack_exports__;
|
|
149
149
|
})();
|
package/compiled/cors/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
|
-
|
|
3
|
+
863: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
4
4
|
(function () {
|
|
5
5
|
"use strict";
|
|
6
|
-
var assign = __nccwpck_require__(
|
|
7
|
-
var vary = __nccwpck_require__(
|
|
6
|
+
var assign = __nccwpck_require__(148);
|
|
7
|
+
var vary = __nccwpck_require__(188);
|
|
8
8
|
var defaults = {
|
|
9
9
|
origin: "*",
|
|
10
10
|
methods: "GET,HEAD,PUT,PATCH,POST,DELETE",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
module.exports = middlewareWrapper;
|
|
192
192
|
})();
|
|
193
193
|
},
|
|
194
|
-
|
|
194
|
+
148: (module) => {
|
|
195
195
|
"use strict";
|
|
196
196
|
/*
|
|
197
197
|
object-assign
|
|
@@ -268,7 +268,7 @@ object-assign
|
|
|
268
268
|
return to;
|
|
269
269
|
};
|
|
270
270
|
},
|
|
271
|
-
|
|
271
|
+
188: (module) => {
|
|
272
272
|
"use strict";
|
|
273
273
|
/*!
|
|
274
274
|
* vary
|
|
@@ -366,6 +366,6 @@ object-assign
|
|
|
366
366
|
}
|
|
367
367
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
368
368
|
__nccwpck_require__.ab = __dirname + "/";
|
|
369
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
369
|
+
var __webpack_exports__ = __nccwpck_require__(863);
|
|
370
370
|
module.exports = __webpack_exports__;
|
|
371
371
|
})();
|