Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helpers/build-sea.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ function buildBundle() {
format: 'cjs',
outfile: bundlePath,
external: [
'@postman/node-keytar',
'@postman/node-keytar/*',
'@github/keytar',
'@github/keytar/*',
Comment on lines 85 to +87
'cpu-features',
'cpu-features/*',
'lando',
Expand Down
206 changes: 22 additions & 184 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,13 @@
"xml2js": "^0.6.2"
},
"optionalDependencies": {
"@postman/node-keytar": "~7.9.3"
"@github/keytar": "^7.10.6"
},
"publishConfig": {
"access": "public"
},
"allowScripts": {
"ssh2@1.17.0": true,
"@github/keytar@7.10.6": true
Comment on lines +186 to +188
}
}
2 changes: 1 addition & 1 deletion src/lib/keychain/secure.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import keytar from '@postman/node-keytar';
import keytar from '@github/keytar';

import type { Keychain } from './keychain';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module '@postman/node-keytar' {
declare module '@github/keytar' {
interface KeytarModule {
getPassword( service: string, account: string ): Promise< string | null >;
setPassword( service: string, account: string, password: string ): Promise< void >;
Expand Down