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

bln-ops-blueprint-library

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bln-ops-blueprint-library - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

29

bin/cli.js

@@ -61,13 +61,20 @@ #!/usr/bin/env node

try {
await Promise.all(blueprints.map(({path: filePath, service}) => new YamlPrinter({
blueprintPath: filePath,
outputPath: `${output}/${service}.yaml`,
options,
blueprintVariables: {
...blueprintVariables,
environmentDefaults,
},
blueprintFunctions: blueprintFunctions(environmentDefaults),
}).print()
));
await Promise.all(blueprints.map(async ({path: filePath, service}) => {
const outputPath = `${output}/${service}.yaml`;
return new YamlPrinter({
blueprintPath: filePath,
outputPath,
options,
blueprintVariables: {
...blueprintVariables,
environmentDefaults,
},
blueprintFunctions: blueprintFunctions(environmentDefaults),
})
.print()
.catch((e) => {
throw new Error(`blueprint ${filePath}, ${outputPath}, ${e.message}`);
})
;
}));

@@ -74,0 +81,0 @@ if (source) {

{
"name": "bln-ops-blueprint-library",
"version": "1.0.7",
"version": "1.0.8",
"lockfileVersion": 1,

@@ -5,0 +5,0 @@ "requires": true,

{
"name": "bln-ops-blueprint-library",
"version": "1.0.7",
"version": "1.0.8",
"description": "Helper tool for parsing and rendering templates",

@@ -5,0 +5,0 @@ "main": "src/index.js",

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