New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@freesewing/core

Package Overview
Dependencies
Maintainers
2
Versions
295
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@freesewing/core - npm Package Compare versions

Comparing version
4.7.0
to
4.7.1
+1
-1
about.json
{
"id": "core",
"description": "A library for creating made-to-measure sewing patterns",
"version": "4.7.0"
"version": "4.7.1"
}
{
"name": "@freesewing/core",
"version": "4.7.0",
"version": "4.7.1",
"description": "A library for creating made-to-measure sewing patterns",

@@ -45,3 +45,3 @@ "author": "Joost De Cock <joost@joost.at> (https://codeberg.org/joostdecock)",

"dependencies": {
"@freesewing/core-plugins": "4.7.0",
"@freesewing/core-plugins": "4.7.1",
"bezier-js": "6.1.4",

@@ -48,0 +48,0 @@ "hooks": "0.3.2",

@@ -287,3 +287,2 @@ import { Bezier } from './bezier.mjs'

this.context.store.log.error(`Could not calculate boundary of \`paths.${key}\``)
return false
}

@@ -290,0 +289,0 @@ }

@@ -407,5 +407,5 @@ import { Attributes } from './attributes.mjs'

log.warn(`\`points.${name}\` was set with a value that is not a \`Point\` object`)
if (value.x == null || !__isCoord(value.x))
if (value?.x == null || !__isCoord(value.x))
log.warn(`\`points.${name}\` was set with a \`x\` parameter that is not a \`number\``)
if (value.y == null || !__isCoord(value.y))
if (value?.y == null || !__isCoord(value.y))
log.warn(`\`points.${name}\` was set with a \`y\` parameter that is not a \`number\``)

@@ -412,0 +412,0 @@ try {