unplugin-dingtalk 0.1.6 → 0.1.9
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/README.md +2 -0
- package/dist/astro.cjs +18 -188
- package/dist/astro.js +1 -1
- package/dist/{chunk-BNQALGGL.js → chunk-3GLWV5IZ.js} +1 -1
- package/dist/chunk-PSBADVC6.js +124 -0
- package/dist/{chunk-KEG2NDRE.js → chunk-U5NNQ27H.js} +1 -1
- package/dist/esbuild.cjs +18 -188
- package/dist/esbuild.js +1 -1
- package/dist/index.cjs +18 -188
- package/dist/index.js +1 -1
- package/dist/nuxt.cjs +18 -188
- package/dist/nuxt.js +3 -3
- package/dist/rollup.cjs +18 -188
- package/dist/rollup.js +1 -1
- package/dist/rspack.cjs +18 -188
- package/dist/rspack.js +1 -1
- package/dist/types.d.cts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/vite.cjs +18 -188
- package/dist/vite.js +2 -2
- package/dist/webpack.cjs +18 -188
- package/dist/webpack.js +2 -2
- package/package.json +5 -4
- package/dist/chunk-QTZOG6NL.js +0 -324
package/README.md
CHANGED
|
@@ -25,6 +25,8 @@ interface Options {
|
|
|
25
25
|
debug?: boolean
|
|
26
26
|
/** @link https://github.com/vadxq/vite-plugin-vconsole#vitevconsole-options */
|
|
27
27
|
vconsole?: viteVConsoleOptions
|
|
28
|
+
/** 需要调试的 cookies, 避免无法调试 HttpOnly 的 cookie */
|
|
29
|
+
debugCookies?: string[]
|
|
28
30
|
vueDevtools?: {
|
|
29
31
|
enable?: boolean
|
|
30
32
|
host?: string
|
package/dist/astro.cjs
CHANGED
|
@@ -5,9 +5,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __commonJS = (cb, mod) => function __require() {
|
|
9
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
|
-
};
|
|
11
8
|
var __export = (target, all) => {
|
|
12
9
|
for (var name in all)
|
|
13
10
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -30,64 +27,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
27
|
));
|
|
31
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
29
|
|
|
33
|
-
// node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js
|
|
34
|
-
var require_picocolors = __commonJS({
|
|
35
|
-
"node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js"(exports2, module2) {
|
|
36
|
-
"use strict";
|
|
37
|
-
var argv = process.argv || [];
|
|
38
|
-
var env = process.env;
|
|
39
|
-
var isColorSupported = !("NO_COLOR" in env || argv.includes("--no-color")) && ("FORCE_COLOR" in env || argv.includes("--color") || process.platform === "win32" || require != null && require("tty").isatty(1) && env.TERM !== "dumb" || "CI" in env);
|
|
40
|
-
var formatter = (open, close, replace = open) => (input) => {
|
|
41
|
-
let string = "" + input;
|
|
42
|
-
let index = string.indexOf(close, open.length);
|
|
43
|
-
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
|
|
44
|
-
};
|
|
45
|
-
var replaceClose = (string, close, replace, index) => {
|
|
46
|
-
let result = "";
|
|
47
|
-
let cursor = 0;
|
|
48
|
-
do {
|
|
49
|
-
result += string.substring(cursor, index) + replace;
|
|
50
|
-
cursor = index + close.length;
|
|
51
|
-
index = string.indexOf(close, cursor);
|
|
52
|
-
} while (~index);
|
|
53
|
-
return result + string.substring(cursor);
|
|
54
|
-
};
|
|
55
|
-
var createColors = (enabled = isColorSupported) => {
|
|
56
|
-
let init = enabled ? formatter : () => String;
|
|
57
|
-
return {
|
|
58
|
-
isColorSupported: enabled,
|
|
59
|
-
reset: init("\x1B[0m", "\x1B[0m"),
|
|
60
|
-
bold: init("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
61
|
-
dim: init("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
62
|
-
italic: init("\x1B[3m", "\x1B[23m"),
|
|
63
|
-
underline: init("\x1B[4m", "\x1B[24m"),
|
|
64
|
-
inverse: init("\x1B[7m", "\x1B[27m"),
|
|
65
|
-
hidden: init("\x1B[8m", "\x1B[28m"),
|
|
66
|
-
strikethrough: init("\x1B[9m", "\x1B[29m"),
|
|
67
|
-
black: init("\x1B[30m", "\x1B[39m"),
|
|
68
|
-
red: init("\x1B[31m", "\x1B[39m"),
|
|
69
|
-
green: init("\x1B[32m", "\x1B[39m"),
|
|
70
|
-
yellow: init("\x1B[33m", "\x1B[39m"),
|
|
71
|
-
blue: init("\x1B[34m", "\x1B[39m"),
|
|
72
|
-
magenta: init("\x1B[35m", "\x1B[39m"),
|
|
73
|
-
cyan: init("\x1B[36m", "\x1B[39m"),
|
|
74
|
-
white: init("\x1B[37m", "\x1B[39m"),
|
|
75
|
-
gray: init("\x1B[90m", "\x1B[39m"),
|
|
76
|
-
bgBlack: init("\x1B[40m", "\x1B[49m"),
|
|
77
|
-
bgRed: init("\x1B[41m", "\x1B[49m"),
|
|
78
|
-
bgGreen: init("\x1B[42m", "\x1B[49m"),
|
|
79
|
-
bgYellow: init("\x1B[43m", "\x1B[49m"),
|
|
80
|
-
bgBlue: init("\x1B[44m", "\x1B[49m"),
|
|
81
|
-
bgMagenta: init("\x1B[45m", "\x1B[49m"),
|
|
82
|
-
bgCyan: init("\x1B[46m", "\x1B[49m"),
|
|
83
|
-
bgWhite: init("\x1B[47m", "\x1B[49m")
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
module2.exports = createColors();
|
|
87
|
-
module2.exports.createColors = createColors;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
|
|
91
30
|
// src/astro.ts
|
|
92
31
|
var astro_exports = {};
|
|
93
32
|
__export(astro_exports, {
|
|
@@ -99,132 +38,9 @@ module.exports = __toCommonJS(astro_exports);
|
|
|
99
38
|
var import_node_child_process = require("child_process");
|
|
100
39
|
var import_node_process = __toESM(require("process"), 1);
|
|
101
40
|
var import_unplugin = require("unplugin");
|
|
102
|
-
var import_picocolors = __toESM(
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
var parseVConsoleOptions = (config2) => Object.keys(config2).reduce((code, key) => {
|
|
106
|
-
const value = config2[key];
|
|
107
|
-
if (typeof value === "function") {
|
|
108
|
-
if (/^[(f]/.test(value.toString())) {
|
|
109
|
-
code += `${key}: ${value},`;
|
|
110
|
-
return code;
|
|
111
|
-
} else {
|
|
112
|
-
code += `${value},`;
|
|
113
|
-
return code;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
code += `${key}: ${JSON.stringify(config2[key])},`;
|
|
117
|
-
return code;
|
|
118
|
-
}, "");
|
|
119
|
-
var getEventItems = (event, id) => {
|
|
120
|
-
return event.map(
|
|
121
|
-
(ele) => `
|
|
122
|
-
${id}.on('${ele.eventName}', ${ele.callback})
|
|
123
|
-
`
|
|
124
|
-
).join(";");
|
|
125
|
-
};
|
|
126
|
-
var getDynamicConfig = (dynamicConfig) => {
|
|
127
|
-
let configString = "";
|
|
128
|
-
if (!dynamicConfig) {
|
|
129
|
-
return configString;
|
|
130
|
-
}
|
|
131
|
-
for (const key in dynamicConfig) {
|
|
132
|
-
if (typeof dynamicConfig[key] === "string") {
|
|
133
|
-
configString += `${key}: ${dynamicConfig[key]},`;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
return configString;
|
|
137
|
-
};
|
|
138
|
-
var getPlugins = (plugin) => {
|
|
139
|
-
let plugins = "";
|
|
140
|
-
if (plugin && plugin.length) {
|
|
141
|
-
plugins = plugin.map(
|
|
142
|
-
(e) => `
|
|
143
|
-
const ${e.id} = new VConsole.VConsolePlugin('${e.id}', '${e.name}');
|
|
144
|
-
${getEventItems(e.event, e.id)}
|
|
145
|
-
vConsole.addPlugin(${e.id})
|
|
146
|
-
`
|
|
147
|
-
).join(";");
|
|
148
|
-
}
|
|
149
|
-
return plugins;
|
|
150
|
-
};
|
|
151
|
-
function viteVConsole(opt) {
|
|
152
|
-
const {
|
|
153
|
-
entry,
|
|
154
|
-
enabled = true,
|
|
155
|
-
config: config2 = {},
|
|
156
|
-
plugin,
|
|
157
|
-
customHide = false,
|
|
158
|
-
dynamicConfig = {},
|
|
159
|
-
eventListener = ""
|
|
160
|
-
} = opt;
|
|
161
|
-
let entryPath = Array.isArray(entry) ? entry : [entry];
|
|
162
|
-
if (process.platform === "win32")
|
|
163
|
-
entryPath = entryPath.map((item) => item.replace(/\\/g, "/"));
|
|
164
|
-
const enabledTruly = enabled;
|
|
165
|
-
return {
|
|
166
|
-
name: "vite:vconsole",
|
|
167
|
-
enforce: "pre",
|
|
168
|
-
transform(_source, id) {
|
|
169
|
-
if (entryPath.includes(id) && enabledTruly) {
|
|
170
|
-
const code = `/* eslint-disable */;
|
|
171
|
-
import VConsole from 'vconsole';
|
|
172
|
-
// config
|
|
173
|
-
const vConsole = new VConsole({${parseVConsoleOptions(
|
|
174
|
-
config2
|
|
175
|
-
)}});
|
|
176
|
-
window.vConsole = vConsole;
|
|
177
|
-
|
|
178
|
-
// plugins
|
|
179
|
-
${getPlugins(plugin)}
|
|
180
|
-
|
|
181
|
-
// dynamic config
|
|
182
|
-
window.vConsole.dynamicFunction = function() {
|
|
183
|
-
if (${getDynamicConfig(dynamicConfig).length > 0}) {
|
|
184
|
-
vConsole.setOption({${getDynamicConfig(dynamicConfig)}});
|
|
185
|
-
}
|
|
186
|
-
};
|
|
187
|
-
|
|
188
|
-
window.vConsole.dynamicChange = {
|
|
189
|
-
value: new Date().getTime()
|
|
190
|
-
};
|
|
191
|
-
|
|
192
|
-
window.vConsole.dynamicFunction();
|
|
193
|
-
|
|
194
|
-
if (${customHide}) {
|
|
195
|
-
vConsole.hideSwitch();
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
// In order to be compatible with old equipment, I used defineProperty. In the future, when proxy covers enough devices, proxy will be used.
|
|
199
|
-
Object.defineProperty(window.vConsole.dynamicChange, 'value', {
|
|
200
|
-
get: function() {
|
|
201
|
-
return this._value;
|
|
202
|
-
},
|
|
203
|
-
set: function(newValue) {
|
|
204
|
-
window.vConsole.dynamicFunction();
|
|
205
|
-
this._value = newValue;
|
|
206
|
-
}
|
|
207
|
-
});
|
|
208
|
-
|
|
209
|
-
// eventListener
|
|
210
|
-
${eventListener}
|
|
211
|
-
/* eslint-enable */${_source}`;
|
|
212
|
-
return {
|
|
213
|
-
code,
|
|
214
|
-
map: null
|
|
215
|
-
// support source map
|
|
216
|
-
};
|
|
217
|
-
}
|
|
218
|
-
return {
|
|
219
|
-
code: _source,
|
|
220
|
-
map: null
|
|
221
|
-
// support source map
|
|
222
|
-
};
|
|
223
|
-
}
|
|
224
|
-
};
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
// src/index.ts
|
|
41
|
+
var import_picocolors = __toESM(require("picocolors"), 1);
|
|
42
|
+
var import_vite_plugin_vconsole = require("vite-plugin-vconsole");
|
|
43
|
+
var import_cookie = __toESM(require("cookie"), 1);
|
|
228
44
|
var config;
|
|
229
45
|
var devtoolsInstance;
|
|
230
46
|
var colorUrl = (url) => import_picocolors.default.green(url.replace(/:(\d+)\//, (_, port) => `:${import_picocolors.default.bold(port)}/`));
|
|
@@ -291,6 +107,20 @@ var unpluginFactory = (options) => {
|
|
|
291
107
|
if (options == null ? void 0 : options.corpId) {
|
|
292
108
|
targetURL.searchParams.append("corpId", options.corpId);
|
|
293
109
|
}
|
|
110
|
+
if (options.debugCookies && options.debugCookies.length > 0) {
|
|
111
|
+
server.middlewares.use((req, res, next) => {
|
|
112
|
+
const cookies = import_cookie.default.parse(req.headers.cookie || "");
|
|
113
|
+
for (const [name, value] of Object.entries(cookies)) {
|
|
114
|
+
if (options.debugCookies && options.debugCookies.length > 0 && options.debugCookies.includes(name)) {
|
|
115
|
+
const serializedCookie = import_cookie.default.serialize(name, value, {
|
|
116
|
+
httpOnly: false
|
|
117
|
+
});
|
|
118
|
+
res.setHeader("Set-Cookie", serializedCookie);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
next();
|
|
122
|
+
});
|
|
123
|
+
}
|
|
294
124
|
server.middlewares.use("/open-dingtalk", (req, res) => {
|
|
295
125
|
var _a3;
|
|
296
126
|
debug(targetURL.toString());
|
|
@@ -315,7 +145,7 @@ var unpluginFactory = (options) => {
|
|
|
315
145
|
}
|
|
316
146
|
};
|
|
317
147
|
if ((options == null ? void 0 : options.enable) && ((_a = options == null ? void 0 : options.vconsole) == null ? void 0 : _a.enabled)) {
|
|
318
|
-
return [viteVConsole(options == null ? void 0 : options.vconsole), unpluginDing];
|
|
148
|
+
return [(0, import_vite_plugin_vconsole.viteVConsole)(options == null ? void 0 : options.vconsole), unpluginDing];
|
|
319
149
|
} else {
|
|
320
150
|
return unpluginDing;
|
|
321
151
|
}
|
package/dist/astro.js
CHANGED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
import { exec } from "child_process";
|
|
3
|
+
import process from "process";
|
|
4
|
+
import { createUnplugin } from "unplugin";
|
|
5
|
+
import c from "picocolors";
|
|
6
|
+
import { viteVConsole } from "vite-plugin-vconsole";
|
|
7
|
+
import cookie from "cookie";
|
|
8
|
+
var config;
|
|
9
|
+
var devtoolsInstance;
|
|
10
|
+
var colorUrl = (url) => c.green(url.replace(/:(\d+)\//, (_, port) => `:${c.bold(port)}/`));
|
|
11
|
+
var unpluginFactory = (options) => {
|
|
12
|
+
var _a;
|
|
13
|
+
const unpluginDing = {
|
|
14
|
+
name: "unplugin-dingtalk",
|
|
15
|
+
enforce: "pre",
|
|
16
|
+
transformInclude(id) {
|
|
17
|
+
return id.endsWith("main.ts") || id.endsWith("main.js");
|
|
18
|
+
},
|
|
19
|
+
transform(_source) {
|
|
20
|
+
var _a2, _b, _c;
|
|
21
|
+
if ((options == null ? void 0 : options.enable) && ((_a2 = options == null ? void 0 : options.vueDevtools) == null ? void 0 : _a2.enable)) {
|
|
22
|
+
const code = `/* eslint-disable */;
|
|
23
|
+
import { devtools } from '@vue/devtools'
|
|
24
|
+
devtools.connect(${(_b = options == null ? void 0 : options.vueDevtools) == null ? void 0 : _b.host}, ${(_c = options == null ? void 0 : options.vueDevtools) == null ? void 0 : _c.port})
|
|
25
|
+
/* eslint-enable */${_source};
|
|
26
|
+
`;
|
|
27
|
+
return {
|
|
28
|
+
code,
|
|
29
|
+
map: null
|
|
30
|
+
// support source map
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
code: _source,
|
|
35
|
+
map: null
|
|
36
|
+
// support source map
|
|
37
|
+
};
|
|
38
|
+
},
|
|
39
|
+
vite: {
|
|
40
|
+
configResolved(_config) {
|
|
41
|
+
config = _config;
|
|
42
|
+
},
|
|
43
|
+
configureServer(server) {
|
|
44
|
+
var _a2, _b;
|
|
45
|
+
if (!(options == null ? void 0 : options.enable)) {
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
function debug(...args) {
|
|
49
|
+
if (options == null ? void 0 : options.debug) {
|
|
50
|
+
console.log(` ${c.yellow("DEBUG")} `, ...args);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
const _printUrls = server.printUrls.bind(server);
|
|
54
|
+
let source = `localhost:${config.server.port || 5173}`;
|
|
55
|
+
const url = (_a2 = server.resolvedUrls) == null ? void 0 : _a2.local[0];
|
|
56
|
+
if (url) {
|
|
57
|
+
const u = new URL(url);
|
|
58
|
+
source = u.host;
|
|
59
|
+
}
|
|
60
|
+
const base = server.config.base || "/";
|
|
61
|
+
const _targetUrl = (_b = options == null ? void 0 : options.targetUrl) != null ? _b : `http://${source}${base}`;
|
|
62
|
+
server.printUrls = () => {
|
|
63
|
+
var _a3;
|
|
64
|
+
_printUrls();
|
|
65
|
+
console.log(` ${c.green("\u279C")} ${c.bold(
|
|
66
|
+
`Open in dingtalk${((_a3 = options == null ? void 0 : options.vueDevtools) == null ? void 0 : _a3.enable) ? " (with vue-devtools)" : ""}`
|
|
67
|
+
)}: ${colorUrl(`http://${source}${base}open-dingtalk`)}`);
|
|
68
|
+
};
|
|
69
|
+
const targetURL = new URL(_targetUrl);
|
|
70
|
+
targetURL.searchParams.append("ddtab", "true");
|
|
71
|
+
if (options == null ? void 0 : options.corpId) {
|
|
72
|
+
targetURL.searchParams.append("corpId", options.corpId);
|
|
73
|
+
}
|
|
74
|
+
if (options.debugCookies && options.debugCookies.length > 0) {
|
|
75
|
+
server.middlewares.use((req, res, next) => {
|
|
76
|
+
const cookies = cookie.parse(req.headers.cookie || "");
|
|
77
|
+
for (const [name, value] of Object.entries(cookies)) {
|
|
78
|
+
if (options.debugCookies && options.debugCookies.length > 0 && options.debugCookies.includes(name)) {
|
|
79
|
+
const serializedCookie = cookie.serialize(name, value, {
|
|
80
|
+
httpOnly: false
|
|
81
|
+
});
|
|
82
|
+
res.setHeader("Set-Cookie", serializedCookie);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
next();
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
server.middlewares.use("/open-dingtalk", (req, res) => {
|
|
89
|
+
var _a3;
|
|
90
|
+
debug(targetURL.toString());
|
|
91
|
+
res.writeHead(302, {
|
|
92
|
+
Location: `dingtalk://dingtalkclient/page/link?url=${encodeURIComponent(targetURL.toString())}`
|
|
93
|
+
});
|
|
94
|
+
if (((_a3 = options == null ? void 0 : options.vueDevtools) == null ? void 0 : _a3.enable) && !devtoolsInstance) {
|
|
95
|
+
devtoolsInstance = exec("npx vue-devtools");
|
|
96
|
+
console.log(` ${c.green("\u279C")} vue-devtools is running. If the devtools has no data, please refresh the page in dingtalk.`);
|
|
97
|
+
devtoolsInstance.on("exit", () => {
|
|
98
|
+
devtoolsInstance = void 0;
|
|
99
|
+
});
|
|
100
|
+
process.on("exit", () => {
|
|
101
|
+
if (devtoolsInstance) {
|
|
102
|
+
devtoolsInstance.kill();
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
res.end();
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
if ((options == null ? void 0 : options.enable) && ((_a = options == null ? void 0 : options.vconsole) == null ? void 0 : _a.enabled)) {
|
|
112
|
+
return [viteVConsole(options == null ? void 0 : options.vconsole), unpluginDing];
|
|
113
|
+
} else {
|
|
114
|
+
return unpluginDing;
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
var unplugin = /* @__PURE__ */ createUnplugin(unpluginFactory);
|
|
118
|
+
var src_default = unplugin;
|
|
119
|
+
|
|
120
|
+
export {
|
|
121
|
+
unpluginFactory,
|
|
122
|
+
unplugin,
|
|
123
|
+
src_default
|
|
124
|
+
};
|
package/dist/esbuild.cjs
CHANGED
|
@@ -5,9 +5,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __commonJS = (cb, mod) => function __require() {
|
|
9
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
|
-
};
|
|
11
8
|
var __export = (target, all) => {
|
|
12
9
|
for (var name in all)
|
|
13
10
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -30,64 +27,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
27
|
));
|
|
31
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
29
|
|
|
33
|
-
// node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js
|
|
34
|
-
var require_picocolors = __commonJS({
|
|
35
|
-
"node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js"(exports2, module2) {
|
|
36
|
-
"use strict";
|
|
37
|
-
var argv = process.argv || [];
|
|
38
|
-
var env = process.env;
|
|
39
|
-
var isColorSupported = !("NO_COLOR" in env || argv.includes("--no-color")) && ("FORCE_COLOR" in env || argv.includes("--color") || process.platform === "win32" || require != null && require("tty").isatty(1) && env.TERM !== "dumb" || "CI" in env);
|
|
40
|
-
var formatter = (open, close, replace = open) => (input) => {
|
|
41
|
-
let string = "" + input;
|
|
42
|
-
let index = string.indexOf(close, open.length);
|
|
43
|
-
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
|
|
44
|
-
};
|
|
45
|
-
var replaceClose = (string, close, replace, index) => {
|
|
46
|
-
let result = "";
|
|
47
|
-
let cursor = 0;
|
|
48
|
-
do {
|
|
49
|
-
result += string.substring(cursor, index) + replace;
|
|
50
|
-
cursor = index + close.length;
|
|
51
|
-
index = string.indexOf(close, cursor);
|
|
52
|
-
} while (~index);
|
|
53
|
-
return result + string.substring(cursor);
|
|
54
|
-
};
|
|
55
|
-
var createColors = (enabled = isColorSupported) => {
|
|
56
|
-
let init = enabled ? formatter : () => String;
|
|
57
|
-
return {
|
|
58
|
-
isColorSupported: enabled,
|
|
59
|
-
reset: init("\x1B[0m", "\x1B[0m"),
|
|
60
|
-
bold: init("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
61
|
-
dim: init("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
62
|
-
italic: init("\x1B[3m", "\x1B[23m"),
|
|
63
|
-
underline: init("\x1B[4m", "\x1B[24m"),
|
|
64
|
-
inverse: init("\x1B[7m", "\x1B[27m"),
|
|
65
|
-
hidden: init("\x1B[8m", "\x1B[28m"),
|
|
66
|
-
strikethrough: init("\x1B[9m", "\x1B[29m"),
|
|
67
|
-
black: init("\x1B[30m", "\x1B[39m"),
|
|
68
|
-
red: init("\x1B[31m", "\x1B[39m"),
|
|
69
|
-
green: init("\x1B[32m", "\x1B[39m"),
|
|
70
|
-
yellow: init("\x1B[33m", "\x1B[39m"),
|
|
71
|
-
blue: init("\x1B[34m", "\x1B[39m"),
|
|
72
|
-
magenta: init("\x1B[35m", "\x1B[39m"),
|
|
73
|
-
cyan: init("\x1B[36m", "\x1B[39m"),
|
|
74
|
-
white: init("\x1B[37m", "\x1B[39m"),
|
|
75
|
-
gray: init("\x1B[90m", "\x1B[39m"),
|
|
76
|
-
bgBlack: init("\x1B[40m", "\x1B[49m"),
|
|
77
|
-
bgRed: init("\x1B[41m", "\x1B[49m"),
|
|
78
|
-
bgGreen: init("\x1B[42m", "\x1B[49m"),
|
|
79
|
-
bgYellow: init("\x1B[43m", "\x1B[49m"),
|
|
80
|
-
bgBlue: init("\x1B[44m", "\x1B[49m"),
|
|
81
|
-
bgMagenta: init("\x1B[45m", "\x1B[49m"),
|
|
82
|
-
bgCyan: init("\x1B[46m", "\x1B[49m"),
|
|
83
|
-
bgWhite: init("\x1B[47m", "\x1B[49m")
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
module2.exports = createColors();
|
|
87
|
-
module2.exports.createColors = createColors;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
|
|
91
30
|
// src/esbuild.ts
|
|
92
31
|
var esbuild_exports = {};
|
|
93
32
|
__export(esbuild_exports, {
|
|
@@ -100,132 +39,9 @@ var import_unplugin2 = require("unplugin");
|
|
|
100
39
|
var import_node_child_process = require("child_process");
|
|
101
40
|
var import_node_process = __toESM(require("process"), 1);
|
|
102
41
|
var import_unplugin = require("unplugin");
|
|
103
|
-
var import_picocolors = __toESM(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
var parseVConsoleOptions = (config2) => Object.keys(config2).reduce((code, key) => {
|
|
107
|
-
const value = config2[key];
|
|
108
|
-
if (typeof value === "function") {
|
|
109
|
-
if (/^[(f]/.test(value.toString())) {
|
|
110
|
-
code += `${key}: ${value},`;
|
|
111
|
-
return code;
|
|
112
|
-
} else {
|
|
113
|
-
code += `${value},`;
|
|
114
|
-
return code;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
code += `${key}: ${JSON.stringify(config2[key])},`;
|
|
118
|
-
return code;
|
|
119
|
-
}, "");
|
|
120
|
-
var getEventItems = (event, id) => {
|
|
121
|
-
return event.map(
|
|
122
|
-
(ele) => `
|
|
123
|
-
${id}.on('${ele.eventName}', ${ele.callback})
|
|
124
|
-
`
|
|
125
|
-
).join(";");
|
|
126
|
-
};
|
|
127
|
-
var getDynamicConfig = (dynamicConfig) => {
|
|
128
|
-
let configString = "";
|
|
129
|
-
if (!dynamicConfig) {
|
|
130
|
-
return configString;
|
|
131
|
-
}
|
|
132
|
-
for (const key in dynamicConfig) {
|
|
133
|
-
if (typeof dynamicConfig[key] === "string") {
|
|
134
|
-
configString += `${key}: ${dynamicConfig[key]},`;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
return configString;
|
|
138
|
-
};
|
|
139
|
-
var getPlugins = (plugin) => {
|
|
140
|
-
let plugins = "";
|
|
141
|
-
if (plugin && plugin.length) {
|
|
142
|
-
plugins = plugin.map(
|
|
143
|
-
(e) => `
|
|
144
|
-
const ${e.id} = new VConsole.VConsolePlugin('${e.id}', '${e.name}');
|
|
145
|
-
${getEventItems(e.event, e.id)}
|
|
146
|
-
vConsole.addPlugin(${e.id})
|
|
147
|
-
`
|
|
148
|
-
).join(";");
|
|
149
|
-
}
|
|
150
|
-
return plugins;
|
|
151
|
-
};
|
|
152
|
-
function viteVConsole(opt) {
|
|
153
|
-
const {
|
|
154
|
-
entry,
|
|
155
|
-
enabled = true,
|
|
156
|
-
config: config2 = {},
|
|
157
|
-
plugin,
|
|
158
|
-
customHide = false,
|
|
159
|
-
dynamicConfig = {},
|
|
160
|
-
eventListener = ""
|
|
161
|
-
} = opt;
|
|
162
|
-
let entryPath = Array.isArray(entry) ? entry : [entry];
|
|
163
|
-
if (process.platform === "win32")
|
|
164
|
-
entryPath = entryPath.map((item) => item.replace(/\\/g, "/"));
|
|
165
|
-
const enabledTruly = enabled;
|
|
166
|
-
return {
|
|
167
|
-
name: "vite:vconsole",
|
|
168
|
-
enforce: "pre",
|
|
169
|
-
transform(_source, id) {
|
|
170
|
-
if (entryPath.includes(id) && enabledTruly) {
|
|
171
|
-
const code = `/* eslint-disable */;
|
|
172
|
-
import VConsole from 'vconsole';
|
|
173
|
-
// config
|
|
174
|
-
const vConsole = new VConsole({${parseVConsoleOptions(
|
|
175
|
-
config2
|
|
176
|
-
)}});
|
|
177
|
-
window.vConsole = vConsole;
|
|
178
|
-
|
|
179
|
-
// plugins
|
|
180
|
-
${getPlugins(plugin)}
|
|
181
|
-
|
|
182
|
-
// dynamic config
|
|
183
|
-
window.vConsole.dynamicFunction = function() {
|
|
184
|
-
if (${getDynamicConfig(dynamicConfig).length > 0}) {
|
|
185
|
-
vConsole.setOption({${getDynamicConfig(dynamicConfig)}});
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
|
-
|
|
189
|
-
window.vConsole.dynamicChange = {
|
|
190
|
-
value: new Date().getTime()
|
|
191
|
-
};
|
|
192
|
-
|
|
193
|
-
window.vConsole.dynamicFunction();
|
|
194
|
-
|
|
195
|
-
if (${customHide}) {
|
|
196
|
-
vConsole.hideSwitch();
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
// In order to be compatible with old equipment, I used defineProperty. In the future, when proxy covers enough devices, proxy will be used.
|
|
200
|
-
Object.defineProperty(window.vConsole.dynamicChange, 'value', {
|
|
201
|
-
get: function() {
|
|
202
|
-
return this._value;
|
|
203
|
-
},
|
|
204
|
-
set: function(newValue) {
|
|
205
|
-
window.vConsole.dynamicFunction();
|
|
206
|
-
this._value = newValue;
|
|
207
|
-
}
|
|
208
|
-
});
|
|
209
|
-
|
|
210
|
-
// eventListener
|
|
211
|
-
${eventListener}
|
|
212
|
-
/* eslint-enable */${_source}`;
|
|
213
|
-
return {
|
|
214
|
-
code,
|
|
215
|
-
map: null
|
|
216
|
-
// support source map
|
|
217
|
-
};
|
|
218
|
-
}
|
|
219
|
-
return {
|
|
220
|
-
code: _source,
|
|
221
|
-
map: null
|
|
222
|
-
// support source map
|
|
223
|
-
};
|
|
224
|
-
}
|
|
225
|
-
};
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
// src/index.ts
|
|
42
|
+
var import_picocolors = __toESM(require("picocolors"), 1);
|
|
43
|
+
var import_vite_plugin_vconsole = require("vite-plugin-vconsole");
|
|
44
|
+
var import_cookie = __toESM(require("cookie"), 1);
|
|
229
45
|
var config;
|
|
230
46
|
var devtoolsInstance;
|
|
231
47
|
var colorUrl = (url) => import_picocolors.default.green(url.replace(/:(\d+)\//, (_, port) => `:${import_picocolors.default.bold(port)}/`));
|
|
@@ -292,6 +108,20 @@ var unpluginFactory = (options) => {
|
|
|
292
108
|
if (options == null ? void 0 : options.corpId) {
|
|
293
109
|
targetURL.searchParams.append("corpId", options.corpId);
|
|
294
110
|
}
|
|
111
|
+
if (options.debugCookies && options.debugCookies.length > 0) {
|
|
112
|
+
server.middlewares.use((req, res, next) => {
|
|
113
|
+
const cookies = import_cookie.default.parse(req.headers.cookie || "");
|
|
114
|
+
for (const [name, value] of Object.entries(cookies)) {
|
|
115
|
+
if (options.debugCookies && options.debugCookies.length > 0 && options.debugCookies.includes(name)) {
|
|
116
|
+
const serializedCookie = import_cookie.default.serialize(name, value, {
|
|
117
|
+
httpOnly: false
|
|
118
|
+
});
|
|
119
|
+
res.setHeader("Set-Cookie", serializedCookie);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
next();
|
|
123
|
+
});
|
|
124
|
+
}
|
|
295
125
|
server.middlewares.use("/open-dingtalk", (req, res) => {
|
|
296
126
|
var _a3;
|
|
297
127
|
debug(targetURL.toString());
|
|
@@ -316,7 +146,7 @@ var unpluginFactory = (options) => {
|
|
|
316
146
|
}
|
|
317
147
|
};
|
|
318
148
|
if ((options == null ? void 0 : options.enable) && ((_a = options == null ? void 0 : options.vconsole) == null ? void 0 : _a.enabled)) {
|
|
319
|
-
return [viteVConsole(options == null ? void 0 : options.vconsole), unpluginDing];
|
|
149
|
+
return [(0, import_vite_plugin_vconsole.viteVConsole)(options == null ? void 0 : options.vconsole), unpluginDing];
|
|
320
150
|
} else {
|
|
321
151
|
return unpluginDing;
|
|
322
152
|
}
|