@prismer/runtime 1.9.0-hotfix.1 → 1.9.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/dist/bin/prismer.js +1 -9
- package/package.json +1 -1
package/dist/bin/prismer.js
CHANGED
|
@@ -31,13 +31,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
31
31
|
));
|
|
32
32
|
|
|
33
33
|
// src/keychain.ts
|
|
34
|
-
var keychain_exports = {};
|
|
35
|
-
__export(keychain_exports, {
|
|
36
|
-
Keychain: () => Keychain,
|
|
37
|
-
KeychainAccessDeniedError: () => KeychainAccessDeniedError,
|
|
38
|
-
KeychainOperationError: () => KeychainOperationError,
|
|
39
|
-
NoKeychainBackendError: () => NoKeychainBackendError
|
|
40
|
-
});
|
|
41
34
|
function isMacAccessDenied(err) {
|
|
42
35
|
if (typeof err !== "object" || err === null) return false;
|
|
43
36
|
const rec = err;
|
|
@@ -8161,8 +8154,7 @@ var init_runner = __esm({
|
|
|
8161
8154
|
// src/commands/pair.ts
|
|
8162
8155
|
async function getAuthHeaders() {
|
|
8163
8156
|
try {
|
|
8164
|
-
const
|
|
8165
|
-
const cfg = await loadConfig({ keychain: new Keychain2() }).catch(() => ({}));
|
|
8157
|
+
const cfg = await loadConfig().catch(() => ({}));
|
|
8166
8158
|
if (cfg.apiKey) {
|
|
8167
8159
|
return { "Authorization": `Bearer ${cfg.apiKey}` };
|
|
8168
8160
|
}
|
package/package.json
CHANGED