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

gerber-plotter

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gerber-plotter - npm Package Compare versions

Comparing version 4.2.1 to 4.2.2

dist/gerber-plotter.min.js.LICENSE.txt

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [4.2.2](https://github.com/tracespace/tracespace/compare/v4.2.1...v4.2.2) (2020-10-13)
### Bug Fixes
* **parser,plotter:** resolve issues with macro parsing and plotting ([#346](https://github.com/tracespace/tracespace/issues/346)) ([09d4a28](https://github.com/tracespace/tracespace/commit/09d4a28)), closes [#345](https://github.com/tracespace/tracespace/issues/345)
## [4.2.1](https://github.com/tracespace/tracespace/compare/v4.2.0...v4.2.1) (2020-04-30)

@@ -8,0 +19,0 @@

16

lib/_pad-shape.js

@@ -242,10 +242,14 @@ // returns a pad shape array given a tool definition

var value = block[key]
result[key] = resolveValue(value)
return result
if (isFunction(value)) {
result[key] = value(mods)
} else {
result[key] = value
function resolveValue(v) {
if (Array.isArray(v)) {
return v.map(resolveValue)
} else if (isFunction(v)) {
return v(mods)
} else {
return v
}
}
return result
}, {})

@@ -252,0 +256,0 @@ }

{
"name": "gerber-plotter",
"version": "4.2.1",
"version": "4.2.2",
"description": "Streaming Gerber / NC drill layer image plotter",

@@ -44,3 +44,3 @@ "main": "index.js",

},
"gitHead": "71020e5ec5a2b87c781f9becf18758aa15444ba3"
"gitHead": "c3690c37fc17cdc3d15ce034e30e09bc084fffe1"
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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