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

edacation

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edacation - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

3

dist/cli/index.js

@@ -9,2 +9,3 @@ #!/usr/bin/env node

import { exists } from './util.js';
import { formatArguments } from '../util.js';
console.log('EDAcation CLI');

@@ -130,3 +131,3 @@ console.log();

const workerOptions = getNextpnrWorkerOptions(project, target.id);
console.log([workerOptions.tool].concat(workerOptions.arguments).join(' '));
console.log([workerOptions.tool].concat(formatArguments(workerOptions.arguments)).join('\n'));
console.log();

@@ -133,0 +134,0 @@ if (shouldExecute) {

@@ -13,1 +13,2 @@ /// <reference types="node" resolution-mode="require"/>

export declare const FILE_EXTENSIONS_HDL: string[];
export declare const formatArguments: (args: string[]) => string[];

@@ -10,2 +10,3 @@ const textEncoder = new TextEncoder();

export const FILE_EXTENSIONS_HDL = [...FILE_EXTENSIONS_VERILOG, ...FILE_EXTENSIONS_VHDL];
export const formatArguments = (args) => args.reduce((prev, arg) => arg.startsWith('--') ? [...prev, arg] : [...prev.slice(0, prev.length - 1), `${prev[prev.length - 1]} ${arg}`], []);
//# sourceMappingURL=util.js.map

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "0.1.11",
"version": "0.1.12",
"contributors": [

@@ -8,0 +8,0 @@ "Danielle Huisman <danielle@huisman.me> (https://github.com/DanielleHuisman)"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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