fix(api): use bcrypt directly instead of passlib for compatibility

This commit is contained in:
bwstudio
2026-05-21 22:18:36 +08:00
parent 7f51d200f1
commit 4651781bc3
23511 changed files with 2587254 additions and 8 deletions
+21
View File
@@ -0,0 +1,21 @@
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const require_key = require("./constants/key.js");
const require_use_global_config = require("./components/config-provider/src/hooks/use-global-config.js");
const require_version = require("./version.js");
//#region ../../packages/element-plus/make-installer.ts
const makeInstaller = (components = []) => {
const install = (app, options) => {
if (app[require_key.INSTALLED_KEY]) return;
app[require_key.INSTALLED_KEY] = true;
components.forEach((c) => app.use(c));
if (options) require_use_global_config.provideGlobalConfig(options, app, true);
};
return {
version: require_version.version,
install
};
};
//#endregion
exports.makeInstaller = makeInstaller;
//# sourceMappingURL=make-installer.js.map