Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yaml-crypt

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaml-crypt - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

15

bin/yaml-crypt-cli.js

@@ -25,6 +25,6 @@ #!/usr/bin/env node

function main() {
async function main() {
let cfg;
try {
cfg = loadConfig();
cfg = await loadConfig();
} catch (e) {

@@ -46,6 +46,6 @@ console.warn("could not read config file, using default!");

if (e instanceof ExitError) {
process.exit(e.status);
process.exitCode = e.status;
} else if (e instanceof UsageError || e instanceof UnknownError) {
console.error(`${module.exports.name}: error: ${e.message}`);
process.exit(5);
process.exitCode = 5;
} else if (e instanceof ConfigurationError) {

@@ -55,3 +55,3 @@ console.error(

);
process.exit(6);
process.exitCode = 6;
} else {

@@ -651,3 +651,6 @@ throw e;

if (require.main === module) {
main();
main().catch(e => {
process.exitCode = 1;
console.error(e);
});
}

2

package.json
{
"name": "yaml-crypt",
"version": "0.4.3",
"version": "0.4.4",
"description": "Encrypt and decrypt YAML documents",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc