前端代码
This commit is contained in:
11
node_modules/browser-sync/dist/cli/transforms/addCwdToWatchOptions.js
generated
vendored
Normal file
11
node_modules/browser-sync/dist/cli/transforms/addCwdToWatchOptions.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.addCwdToWatchOptions = void 0;
|
||||
function addCwdToWatchOptions(incoming) {
|
||||
const output = incoming.updateIn(["watchOptions", "cwd"], watchCwd => {
|
||||
return watchCwd || incoming.get("cwd");
|
||||
});
|
||||
return [output, []];
|
||||
}
|
||||
exports.addCwdToWatchOptions = addCwdToWatchOptions;
|
||||
//# sourceMappingURL=addCwdToWatchOptions.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/addCwdToWatchOptions.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/addCwdToWatchOptions.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"addCwdToWatchOptions.js","sourceRoot":"","sources":["../../../lib/cli/transforms/addCwdToWatchOptions.ts"],"names":[],"mappings":";;;AAEA,SAAgB,oBAAoB,CAAC,QAAuB;IACxD,MAAM,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,cAAc,EAAE,KAAK,CAAC,EAAE,QAAQ,CAAC,EAAE;QACjE,OAAO,QAAQ,IAAI,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC,CAAC,CAAC;IAEH,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AACxB,CAAC;AAND,oDAMC"}
|
30
node_modules/browser-sync/dist/cli/transforms/addDefaultIgnorePatterns.js
generated
vendored
Normal file
30
node_modules/browser-sync/dist/cli/transforms/addDefaultIgnorePatterns.js
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.addDefaultIgnorePatterns = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
const defaultIgnorePatterns = [
|
||||
/node_modules/,
|
||||
/bower_components/,
|
||||
".sass-cache",
|
||||
".vscode",
|
||||
".git",
|
||||
".idea"
|
||||
];
|
||||
function addDefaultIgnorePatterns(incoming) {
|
||||
if (!incoming.get("watch")) {
|
||||
return [incoming, []];
|
||||
}
|
||||
const output = incoming.update("watchOptions", watchOptions => {
|
||||
const userIgnored = (0, immutable_1.List)([])
|
||||
.concat(watchOptions.get("ignored"))
|
||||
.filter(Boolean)
|
||||
.toSet();
|
||||
const merged = userIgnored.merge(defaultIgnorePatterns);
|
||||
return watchOptions.merge({
|
||||
ignored: merged.toList()
|
||||
});
|
||||
});
|
||||
return [output, []];
|
||||
}
|
||||
exports.addDefaultIgnorePatterns = addDefaultIgnorePatterns;
|
||||
//# sourceMappingURL=addDefaultIgnorePatterns.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/addDefaultIgnorePatterns.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/addDefaultIgnorePatterns.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"addDefaultIgnorePatterns.js","sourceRoot":"","sources":["../../../lib/cli/transforms/addDefaultIgnorePatterns.ts"],"names":[],"mappings":";;;AAAA,yCAAiC;AAGjC,MAAM,qBAAqB,GAAG;IAC1B,cAAc;IACd,kBAAkB;IAClB,aAAa;IACb,SAAS;IACT,MAAM;IACN,OAAO;CACV,CAAC;AAEF,SAAgB,wBAAwB,CACpC,QAAuB;IAEvB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;QACxB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KACzB;IAED,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC,cAAc,EAAE,YAAY,CAAC,EAAE;QAC1D,MAAM,WAAW,GAAG,IAAA,gBAAI,EAAC,EAAE,CAAC;aACvB,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;aACnC,MAAM,CAAC,OAAO,CAAC;aACf,KAAK,EAAE,CAAC;QAEb,MAAM,MAAM,GAAG,WAAW,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAExD,OAAO,YAAY,CAAC,KAAK,CAAC;YACtB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE;SAC3B,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;IAEH,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AACxB,CAAC;AArBD,4DAqBC"}
|
48
node_modules/browser-sync/dist/cli/transforms/addToFilesOption.js
generated
vendored
Normal file
48
node_modules/browser-sync/dist/cli/transforms/addToFilesOption.js
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.addToFilesOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
function addToFilesOption(incoming) {
|
||||
if (!incoming.get("watch")) {
|
||||
return [incoming, []];
|
||||
}
|
||||
let serverPaths = [];
|
||||
const fromServeStatic = incoming.get("serveStatic", (0, immutable_1.List)([])).toArray();
|
||||
const ssPaths = fromServeStatic.reduce((acc, ss) => {
|
||||
if (typeof ss === "string") {
|
||||
return acc.concat(ss);
|
||||
}
|
||||
if (ss.dir && typeof ss.dir === "string") {
|
||||
return acc.concat(ss);
|
||||
}
|
||||
return acc;
|
||||
}, []);
|
||||
ssPaths.forEach(p => serverPaths.push(p));
|
||||
const server = incoming.get("server");
|
||||
if (server) {
|
||||
if (server === true) {
|
||||
serverPaths.push(".");
|
||||
}
|
||||
if (typeof server === "string") {
|
||||
serverPaths.push(server);
|
||||
}
|
||||
if (immutable_1.List.isList(server) && server.every(x => typeof x === "string")) {
|
||||
server.forEach(s => serverPaths.push(s));
|
||||
}
|
||||
if (immutable_1.Map.isMap(server)) {
|
||||
const baseDirProp = server.get("baseDir");
|
||||
const baseDirs = (0, immutable_1.List)([])
|
||||
.concat(baseDirProp)
|
||||
.filter(Boolean);
|
||||
baseDirs.forEach(s => serverPaths.push(s));
|
||||
}
|
||||
}
|
||||
const output = incoming.update("files", files => {
|
||||
return (0, immutable_1.List)([])
|
||||
.concat(files, serverPaths)
|
||||
.filter(Boolean);
|
||||
});
|
||||
return [output, []];
|
||||
}
|
||||
exports.addToFilesOption = addToFilesOption;
|
||||
//# sourceMappingURL=addToFilesOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/addToFilesOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/addToFilesOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"addToFilesOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/addToFilesOption.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,SAAgB,gBAAgB,CAAC,QAAuB;IACpD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;QACxB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KACzB;IAED,IAAI,WAAW,GAAG,EAAE,CAAC;IAErB,MAAM,eAAe,GAAG,QAAQ,CAAC,GAAG,CAAC,aAAa,EAAE,IAAA,gBAAI,EAAC,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IACxE,MAAM,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE;QAC/C,IAAI,OAAO,EAAE,KAAK,QAAQ,EAAE;YACxB,OAAO,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;SACzB;QACD,IAAI,EAAE,CAAC,GAAG,IAAI,OAAO,EAAE,CAAC,GAAG,KAAK,QAAQ,EAAE;YACtC,OAAO,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;SACzB;QACD,OAAO,GAAG,CAAC;IACf,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IAE1C,MAAM,MAAM,GAAG,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACtC,IAAI,MAAM,EAAE;QACR,IAAI,MAAM,KAAK,IAAI,EAAE;YACjB,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;SACzB;QACD,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;YAC5B,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SAC5B;QACD,IAAI,gBAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,CAAC,EAAE;YACjE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC5C;QACD,IAAI,eAAG,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE;YACnB,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;YAC1C,MAAM,QAAQ,GAAG,IAAA,gBAAI,EAAC,EAAE,CAAC;iBACpB,MAAM,CAAC,WAAW,CAAC;iBACnB,MAAM,CAAC,OAAO,CAAC,CAAC;YACrB,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC9C;KACJ;IAED,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE;QAC5C,OAAO,IAAA,gBAAI,EAAC,EAAE,CAAC;aACV,MAAM,CAAC,KAAK,EAAE,WAAW,CAAC;aAC1B,MAAM,CAAC,OAAO,CAAC,CAAC;IACzB,CAAC,CAAC,CAAC;IACH,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AACxB,CAAC;AA9CD,4CA8CC"}
|
16
node_modules/browser-sync/dist/cli/transforms/appendServerDirectoryOption.js
generated
vendored
Normal file
16
node_modules/browser-sync/dist/cli/transforms/appendServerDirectoryOption.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.appendServerDirectoryOption = void 0;
|
||||
function appendServerDirectoryOption(incoming) {
|
||||
if (!incoming.get("server"))
|
||||
return [incoming, []];
|
||||
if (incoming.get("directory")) {
|
||||
return [
|
||||
incoming.setIn(["server", "directory"], incoming.has("directory")),
|
||||
[]
|
||||
];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.appendServerDirectoryOption = appendServerDirectoryOption;
|
||||
//# sourceMappingURL=appendServerDirectoryOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/appendServerDirectoryOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/appendServerDirectoryOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"appendServerDirectoryOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/appendServerDirectoryOption.ts"],"names":[],"mappings":";;;AAEA,SAAgB,2BAA2B,CACvC,QAAuB;IAEvB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IACnD,IAAI,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE;QAC3B,OAAO;YACH,QAAQ,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;YAClE,EAAE;SACL,CAAC;KACL;IACD,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AAXD,kEAWC"}
|
14
node_modules/browser-sync/dist/cli/transforms/appendServerIndexOption.js
generated
vendored
Normal file
14
node_modules/browser-sync/dist/cli/transforms/appendServerIndexOption.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.appendServerIndexOption = void 0;
|
||||
function appendServerIndexOption(incoming) {
|
||||
if (!incoming.get("server"))
|
||||
return [incoming, []];
|
||||
const value = incoming.get("index");
|
||||
if (value) {
|
||||
return [incoming.setIn(["server", "index"], value), []];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.appendServerIndexOption = appendServerIndexOption;
|
||||
//# sourceMappingURL=appendServerIndexOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/appendServerIndexOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/appendServerIndexOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"appendServerIndexOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/appendServerIndexOption.ts"],"names":[],"mappings":";;;AAEA,SAAgB,uBAAuB,CACnC,QAAuB;IAEvB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC;QAAE,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IACnD,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAEpC,IAAI,KAAK,EAAE;QACP,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC;KAC3D;IAED,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AAXD,0DAWC"}
|
15
node_modules/browser-sync/dist/cli/transforms/copyCLIIgnoreToWatchOptions.js
generated
vendored
Normal file
15
node_modules/browser-sync/dist/cli/transforms/copyCLIIgnoreToWatchOptions.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.copyCLIIgnoreToWatchOptions = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
function copyCLIIgnoreToWatchOptions(incoming) {
|
||||
if (!incoming.get("ignore")) {
|
||||
return [incoming, []];
|
||||
}
|
||||
const output = incoming.updateIn(["watchOptions", "ignored"], (0, immutable_1.List)([]), ignored => {
|
||||
return (0, immutable_1.List)([]).concat(ignored, incoming.get("ignore"));
|
||||
});
|
||||
return [output, []];
|
||||
}
|
||||
exports.copyCLIIgnoreToWatchOptions = copyCLIIgnoreToWatchOptions;
|
||||
//# sourceMappingURL=copyCLIIgnoreToWatchOptions.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/copyCLIIgnoreToWatchOptions.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/copyCLIIgnoreToWatchOptions.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"copyCLIIgnoreToWatchOptions.js","sourceRoot":"","sources":["../../../lib/cli/transforms/copyCLIIgnoreToWatchOptions.ts"],"names":[],"mappings":";;;AAAA,yCAAiC;AAGjC,SAAgB,2BAA2B,CACvC,QAAuB;IAEvB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;QACzB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KACzB;IACD,MAAM,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAC5B,CAAC,cAAc,EAAE,SAAS,CAAC,EAC3B,IAAA,gBAAI,EAAC,EAAE,CAAC,EACR,OAAO,CAAC,EAAE;QACN,OAAO,IAAA,gBAAI,EAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC5D,CAAC,CACJ,CAAC;IAEF,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AACxB,CAAC;AAfD,kEAeC"}
|
21
node_modules/browser-sync/dist/cli/transforms/handleExtensionsOption.js
generated
vendored
Normal file
21
node_modules/browser-sync/dist/cli/transforms/handleExtensionsOption.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleExtensionsOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
const cli_options_1 = require("../cli-options");
|
||||
const _ = require("../../lodash.custom");
|
||||
function handleExtensionsOption(incoming) {
|
||||
const value = incoming.get("extensions");
|
||||
if (_.isString(value)) {
|
||||
const split = (0, cli_options_1.explodeFilesArg)(value);
|
||||
if (split.length) {
|
||||
return [incoming.set("extensions", (0, immutable_1.List)(split)), []];
|
||||
}
|
||||
}
|
||||
if (immutable_1.List.isList(value)) {
|
||||
return [incoming.set("extensions", value), []];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.handleExtensionsOption = handleExtensionsOption;
|
||||
//# sourceMappingURL=handleExtensionsOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleExtensionsOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleExtensionsOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleExtensionsOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleExtensionsOption.ts"],"names":[],"mappings":";;;AAAA,yCAAiC;AACjC,gDAIwB;AAExB,MAAM,CAAC,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAEzC,SAAgB,sBAAsB,CAClC,QAAuB;IAEvB,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACzC,IAAI,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE;QACnB,MAAM,KAAK,GAAG,IAAA,6BAAe,EAAC,KAAK,CAAC,CAAC;QACrC,IAAI,KAAK,CAAC,MAAM,EAAE;YACd,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,IAAA,gBAAI,EAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACxD;KACJ;IACD,IAAI,gBAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;QACpB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC;KAClD;IACD,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AAdD,wDAcC"}
|
24
node_modules/browser-sync/dist/cli/transforms/handleFilesOption.js
generated
vendored
Normal file
24
node_modules/browser-sync/dist/cli/transforms/handleFilesOption.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleFilesOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
const cli_options_1 = require("../cli-options");
|
||||
function handleFilesOption(incoming) {
|
||||
const value = incoming.get("files");
|
||||
const namespaces = {
|
||||
core: {
|
||||
globs: [],
|
||||
objs: []
|
||||
}
|
||||
};
|
||||
const processed = (0, cli_options_1.makeFilesArg)(value);
|
||||
if (processed.globs.length) {
|
||||
namespaces.core.globs = processed.globs;
|
||||
}
|
||||
if (processed.objs.length) {
|
||||
namespaces.core.objs = processed.objs;
|
||||
}
|
||||
return [incoming.set("files", (0, immutable_1.fromJS)(namespaces)), []];
|
||||
}
|
||||
exports.handleFilesOption = handleFilesOption;
|
||||
//# sourceMappingURL=handleFilesOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleFilesOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleFilesOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleFilesOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleFilesOption.ts"],"names":[],"mappings":";;;AAAA,yCAAmC;AACnC,gDAA8E;AAG9E,SAAgB,iBAAiB,CAAC,QAAuB;IACrD,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACpC,MAAM,UAAU,GAAoB;QAChC,IAAI,EAAE;YACF,KAAK,EAAE,EAAE;YACT,IAAI,EAAE,EAAE;SACX;KACJ,CAAC;IAEF,MAAM,SAAS,GAAG,IAAA,0BAAY,EAAC,KAAK,CAAC,CAAC;IAEtC,IAAI,SAAS,CAAC,KAAK,CAAC,MAAM,EAAE;QACxB,UAAU,CAAC,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;KAC3C;IAED,IAAI,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE;QACvB,UAAU,CAAC,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC,IAAI,CAAC;KACzC;IAED,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,EAAE,IAAA,kBAAM,EAAC,UAAU,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AAC3D,CAAC;AApBD,8CAoBC"}
|
58
node_modules/browser-sync/dist/cli/transforms/handleGhostModeOption.js
generated
vendored
Normal file
58
node_modules/browser-sync/dist/cli/transforms/handleGhostModeOption.js
generated
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleGhostModeOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
function handleGhostModeOption(incoming) {
|
||||
const value = incoming.get("ghostMode");
|
||||
var trueAll = {
|
||||
clicks: true,
|
||||
scroll: true,
|
||||
forms: {
|
||||
submit: true,
|
||||
inputs: true,
|
||||
toggles: true
|
||||
}
|
||||
};
|
||||
var falseAll = {
|
||||
clicks: false,
|
||||
scroll: false,
|
||||
forms: {
|
||||
submit: false,
|
||||
inputs: false,
|
||||
toggles: false
|
||||
}
|
||||
};
|
||||
if (value === false || value === "false") {
|
||||
return [incoming.set("ghostMode", (0, immutable_1.fromJS)(falseAll)), []];
|
||||
}
|
||||
if (value === true || value === "true") {
|
||||
return [incoming.set("ghostMode", (0, immutable_1.fromJS)(trueAll)), []];
|
||||
}
|
||||
if (value.get("forms") === false) {
|
||||
return [
|
||||
incoming.set("ghostMode", value.withMutations(function (map) {
|
||||
map.set("forms", (0, immutable_1.fromJS)({
|
||||
submit: false,
|
||||
inputs: false,
|
||||
toggles: false
|
||||
}));
|
||||
})),
|
||||
[]
|
||||
];
|
||||
}
|
||||
if (value.get("forms") === true) {
|
||||
return [
|
||||
incoming.set("ghostMode", value.withMutations(function (map) {
|
||||
map.set("forms", (0, immutable_1.fromJS)({
|
||||
submit: true,
|
||||
inputs: true,
|
||||
toggles: true
|
||||
}));
|
||||
})),
|
||||
[]
|
||||
];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.handleGhostModeOption = handleGhostModeOption;
|
||||
//# sourceMappingURL=handleGhostModeOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleGhostModeOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleGhostModeOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleGhostModeOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleGhostModeOption.ts"],"names":[],"mappings":";;;AAAA,yCAAmC;AAGnC,SAAgB,qBAAqB,CACjC,QAAuB;IAEvB,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACxC,IAAI,OAAO,GAAG;QACV,MAAM,EAAE,IAAI;QACZ,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE;YACH,MAAM,EAAE,IAAI;YACZ,MAAM,EAAE,IAAI;YACZ,OAAO,EAAE,IAAI;SAChB;KACJ,CAAC;IAEF,IAAI,QAAQ,GAAG;QACX,MAAM,EAAE,KAAK;QACb,MAAM,EAAE,KAAK;QACb,KAAK,EAAE;YACH,MAAM,EAAE,KAAK;YACb,MAAM,EAAE,KAAK;YACb,OAAO,EAAE,KAAK;SACjB;KACJ,CAAC;IAEF,IAAI,KAAK,KAAK,KAAK,IAAI,KAAK,KAAK,OAAO,EAAE;QACtC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,EAAE,IAAA,kBAAM,EAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;KAC5D;IAED,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,MAAM,EAAE;QACpC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,EAAE,IAAA,kBAAM,EAAC,OAAO,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;KAC3D;IAED,IAAI,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,KAAK,EAAE;QAC9B,OAAO;YACH,QAAQ,CAAC,GAAG,CACR,WAAW,EACX,KAAK,CAAC,aAAa,CAAC,UAAS,GAAG;gBAC5B,GAAG,CAAC,GAAG,CACH,OAAO,EACP,IAAA,kBAAM,EAAC;oBACH,MAAM,EAAE,KAAK;oBACb,MAAM,EAAE,KAAK;oBACb,OAAO,EAAE,KAAK;iBACjB,CAAC,CACL,CAAC;YACN,CAAC,CAAC,CACL;YACD,EAAE;SACL,CAAC;KACL;IAED,IAAI,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,IAAI,EAAE;QAC7B,OAAO;YACH,QAAQ,CAAC,GAAG,CACR,WAAW,EACX,KAAK,CAAC,aAAa,CAAC,UAAS,GAAG;gBAC5B,GAAG,CAAC,GAAG,CACH,OAAO,EACP,IAAA,kBAAM,EAAC;oBACH,MAAM,EAAE,IAAI;oBACZ,MAAM,EAAE,IAAI;oBACZ,OAAO,EAAE,IAAI;iBAChB,CAAC,CACL,CAAC;YACN,CAAC,CAAC,CACL;YACD,EAAE;SACL,CAAC;KACL;IAED,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AAvED,sDAuEC"}
|
38
node_modules/browser-sync/dist/cli/transforms/handleHostOption.js
generated
vendored
Normal file
38
node_modules/browser-sync/dist/cli/transforms/handleHostOption.js
generated
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleHostOption = void 0;
|
||||
const bin_1 = require("../../bin");
|
||||
function handleHostOption(incoming) {
|
||||
const host = incoming.get("host");
|
||||
const listen = incoming.get("listen");
|
||||
if (host && listen) {
|
||||
if (host !== listen) {
|
||||
return [
|
||||
incoming,
|
||||
[
|
||||
{
|
||||
errors: [
|
||||
{
|
||||
error: new Error("Cannot specify both `host` and `listen` options"),
|
||||
meta() {
|
||||
return [
|
||||
"",
|
||||
"Tip: Use just the `listen` option *only* if you want to bind only to a particular host."
|
||||
];
|
||||
}
|
||||
}
|
||||
],
|
||||
level: bin_1.BsErrorLevels.Fatal,
|
||||
type: bin_1.BsErrorTypes.HostAndListenIncompatible
|
||||
}
|
||||
]
|
||||
];
|
||||
}
|
||||
// whenever we have have both `host` + `listen` options,
|
||||
// we remove the 'host' to prevent complication further down the line
|
||||
return [incoming.delete("host"), []];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.handleHostOption = handleHostOption;
|
||||
//# sourceMappingURL=handleHostOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleHostOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleHostOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleHostOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleHostOption.ts"],"names":[],"mappings":";;;AACA,mCAAwD;AAExD,SAAgB,gBAAgB,CAAC,QAAuB;IACpD,MAAM,IAAI,GAAkB,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACjD,MAAM,MAAM,GAAkB,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAErD,IAAI,IAAI,IAAI,MAAM,EAAE;QAChB,IAAI,IAAI,KAAK,MAAM,EAAE;YACjB,OAAO;gBACH,QAAQ;gBACR;oBACI;wBACI,MAAM,EAAE;4BACJ;gCACI,KAAK,EAAE,IAAI,KAAK,CACZ,iDAAiD,CACpD;gCACD,IAAI;oCACA,OAAO;wCACH,EAAE;wCACF,mGAAmG;qCACtG,CAAC;gCACN,CAAC;6BACJ;yBACJ;wBACD,KAAK,EAAE,mBAAa,CAAC,KAAK;wBAC1B,IAAI,EAAE,kBAAY,CAAC,yBAAyB;qBAC/C;iBACJ;aACJ,CAAC;SACL;QAED,wDAAwD;QACxD,qEAAqE;QACrE,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;KACxC;IAED,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AApCD,4CAoCC"}
|
28
node_modules/browser-sync/dist/cli/transforms/handlePortsOption.js
generated
vendored
Normal file
28
node_modules/browser-sync/dist/cli/transforms/handlePortsOption.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handlePortsOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
function handlePortsOption(incoming) {
|
||||
const value = incoming.get("ports");
|
||||
if (!value)
|
||||
return [incoming, []];
|
||||
const obj = { min: null, max: null };
|
||||
if (typeof value === "string") {
|
||||
if (~value.indexOf(",")) {
|
||||
const segs = value.split(",");
|
||||
obj.min = parseInt(segs[0], 10);
|
||||
obj.max = parseInt(segs[1], 10);
|
||||
}
|
||||
else {
|
||||
obj.min = parseInt(value, 10);
|
||||
obj.max = null;
|
||||
}
|
||||
}
|
||||
else {
|
||||
obj.min = value.get("min");
|
||||
obj.max = value.get("max") || null;
|
||||
}
|
||||
return [incoming.set("ports", (0, immutable_1.Map)(obj)), []];
|
||||
}
|
||||
exports.handlePortsOption = handlePortsOption;
|
||||
//# sourceMappingURL=handlePortsOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handlePortsOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handlePortsOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handlePortsOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handlePortsOption.ts"],"names":[],"mappings":";;;AAAA,yCAAgC;AAIhC,SAAgB,iBAAiB,CAAC,QAAuB;IACrD,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACpC,IAAI,CAAC,KAAK;QAAE,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAElC,MAAM,GAAG,GAAgB,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;IAElD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC3B,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACrB,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC9B,GAAG,CAAC,GAAG,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;YAChC,GAAG,CAAC,GAAG,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACnC;aAAM;YACH,GAAG,CAAC,GAAG,GAAG,QAAQ,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;YAC9B,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC;SAClB;KACJ;SAAM;QACH,GAAG,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QAC3B,GAAG,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;KACtC;IAED,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,EAAE,IAAA,eAAG,EAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AACjD,CAAC;AArBD,8CAqBC"}
|
39
node_modules/browser-sync/dist/cli/transforms/handleProxyOption.js
generated
vendored
Normal file
39
node_modules/browser-sync/dist/cli/transforms/handleProxyOption.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleProxyOption = void 0;
|
||||
const url = require("url");
|
||||
const immutable_1 = require("immutable");
|
||||
function handleProxyOption(incoming) {
|
||||
let value = incoming.get("proxy");
|
||||
let mw;
|
||||
let target;
|
||||
if (!value || value === true) {
|
||||
return [incoming, []];
|
||||
}
|
||||
if (typeof value !== "string") {
|
||||
target = value.get("target");
|
||||
mw = value.get("middleware");
|
||||
}
|
||||
else {
|
||||
target = value;
|
||||
value = (0, immutable_1.Map)({});
|
||||
}
|
||||
if (!target.match(/^(https?):\/\//)) {
|
||||
target = "http://" + target;
|
||||
}
|
||||
const parsedUrl = url.parse(target);
|
||||
if (!parsedUrl.port) {
|
||||
parsedUrl.port = "80";
|
||||
}
|
||||
const out = {
|
||||
target: parsedUrl.protocol + "//" + parsedUrl.host,
|
||||
url: (0, immutable_1.Map)(parsedUrl)
|
||||
};
|
||||
if (mw) {
|
||||
out.middleware = mw;
|
||||
}
|
||||
const proxyOutput = value.mergeDeep(out);
|
||||
return [incoming.set("proxy", proxyOutput), []];
|
||||
}
|
||||
exports.handleProxyOption = handleProxyOption;
|
||||
//# sourceMappingURL=handleProxyOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleProxyOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleProxyOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleProxyOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleProxyOption.ts"],"names":[],"mappings":";;;AAAA,2BAA2B;AAC3B,yCAAgC;AAIhC,SAAgB,iBAAiB,CAAC,QAAuB;IACrD,IAAI,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAClC,IAAI,EAAE,CAAC;IACP,IAAI,MAAM,CAAC;IAEX,IAAI,CAAC,KAAK,IAAI,KAAK,KAAK,IAAI,EAAE;QAC1B,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KACzB;IAED,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC3B,MAAM,GAAG,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAC7B,EAAE,GAAG,KAAK,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;KAChC;SAAM;QACH,MAAM,GAAG,KAAK,CAAC;QACf,KAAK,GAAG,IAAA,eAAG,EAAC,EAAE,CAAC,CAAC;KACnB;IAED,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,gBAAgB,CAAC,EAAE;QACjC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC;KAC/B;IAED,MAAM,SAAS,GAAG,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAEpC,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE;QACjB,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC;KACzB;IAED,MAAM,GAAG,GAAqB;QAC1B,MAAM,EAAE,SAAS,CAAC,QAAQ,GAAG,IAAI,GAAG,SAAS,CAAC,IAAI;QAClD,GAAG,EAAE,IAAA,eAAG,EAAC,SAAS,CAAC;KACtB,CAAC;IAEF,IAAI,EAAE,EAAE;QACJ,GAAG,CAAC,UAAU,GAAG,EAAE,CAAC;KACvB;IAED,MAAM,WAAW,GAAG,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;IAEzC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,EAAE,WAAW,CAAC,EAAE,EAAE,CAAC,CAAC;AACpD,CAAC;AAvCD,8CAuCC"}
|
40
node_modules/browser-sync/dist/cli/transforms/handleServerOption.js
generated
vendored
Normal file
40
node_modules/browser-sync/dist/cli/transforms/handleServerOption.js
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.handleServerOption = void 0;
|
||||
const immutable_1 = require("immutable");
|
||||
function handleServerOption(incoming) {
|
||||
const value = incoming.get("server");
|
||||
if (value === false) {
|
||||
return [incoming, []];
|
||||
}
|
||||
// server: true
|
||||
if (value === true) {
|
||||
const obj = {
|
||||
baseDir: ["./"]
|
||||
};
|
||||
return [incoming.set("server", (0, immutable_1.fromJS)(obj)), []];
|
||||
}
|
||||
// server: "./app"
|
||||
if (typeof value === "string") {
|
||||
const obj = {
|
||||
baseDir: [value]
|
||||
};
|
||||
return [incoming.set("server", (0, immutable_1.fromJS)(obj)), []];
|
||||
}
|
||||
if (immutable_1.List.isList(value)) {
|
||||
const obj = {
|
||||
baseDir: value
|
||||
};
|
||||
return [incoming.set("server", (0, immutable_1.fromJS)(obj)), []];
|
||||
}
|
||||
if (immutable_1.Map.isMap(value)) {
|
||||
const dirs = (0, immutable_1.List)([])
|
||||
.concat(value.get("baseDir", "./"))
|
||||
.filter(Boolean);
|
||||
const merged = value.merge({ baseDir: dirs });
|
||||
return [incoming.set("server", merged), []];
|
||||
}
|
||||
return [incoming, []];
|
||||
}
|
||||
exports.handleServerOption = handleServerOption;
|
||||
//# sourceMappingURL=handleServerOption.js.map
|
1
node_modules/browser-sync/dist/cli/transforms/handleServerOption.js.map
generated
vendored
Normal file
1
node_modules/browser-sync/dist/cli/transforms/handleServerOption.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"handleServerOption.js","sourceRoot":"","sources":["../../../lib/cli/transforms/handleServerOption.ts"],"names":[],"mappings":";;;AACA,yCAA8C;AAG9C,SAAgB,kBAAkB,CAAC,QAAuB;IACtD,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACrC,IAAI,KAAK,KAAK,KAAK,EAAE;QACjB,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KACzB;IAED,eAAe;IACf,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,MAAM,GAAG,GAAkB;YACvB,OAAO,EAAE,CAAC,IAAI,CAAC;SAClB,CAAC;QACF,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAA,kBAAM,EAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;KACpD;IAED,kBAAkB;IAClB,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC3B,MAAM,GAAG,GAAkB;YACvB,OAAO,EAAE,CAAC,KAAK,CAAC;SACnB,CAAC;QACF,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAA,kBAAM,EAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;KACpD;IAED,IAAI,gBAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;QACpB,MAAM,GAAG,GAAkB;YACvB,OAAO,EAAE,KAAK;SACjB,CAAC;QACF,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAA,kBAAM,EAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;KACpD;IAED,IAAI,eAAG,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE;QAClB,MAAM,IAAI,GAAG,IAAA,gBAAI,EAAC,EAAE,CAAC;aAChB,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;aAClC,MAAM,CAAC,OAAO,CAAC,CAAC;QAErB,MAAM,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC;QAE9C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;KAC/C;IAED,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAC1B,CAAC;AAxCD,gDAwCC"}
|
Reference in New Issue
Block a user