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

fixturify-project

Package Overview
Dependencies
Maintainers
5
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fixturify-project - npm Package Compare versions

Comparing version 4.1.1 to 4.1.2

13

CHANGELOG.md
## v4.1.2 (2022-04-12)
#### :bug: Bug Fix
* [#59](https://github.com/stefanpenner/node-fixturify-project/pull/59) Fixes typeguard to correctly evaluate Error type when globals don't match ([@scalvert](https://github.com/scalvert))
#### :house: Internal
* [#60](https://github.com/stefanpenner/node-fixturify-project/pull/60) Adding release-it setup ([@scalvert](https://github.com/scalvert))
#### Committers: 1
- Steve Calvert ([@scalvert](https://github.com/scalvert))
# 4.0.2

@@ -3,0 +16,0 @@ - [BUGFIX] Fix odd double project directory structure when resolving linked deps

5

index.js

@@ -482,4 +482,7 @@ "use strict";

}
function isObject(e) {
return e !== null && typeof e === 'object' && !Array.isArray(e);
}
function isErrnoException(e) {
return e instanceof Error && 'code' in e;
return isObject(e) && 'code' in e;
}

@@ -486,0 +489,0 @@ function readString(name) {

48

package.json
{
"name": "fixturify-project",
"version": "4.1.1",
"main": "index.js",
"version": "4.1.2",
"repository": "git@github.com:stefanpenner/node-fixturify-project",
"license": "MIT",
"author": "Stefan Penner <stefan.penner@gmail.com>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"clean": "git clean -x -f",
"lint": "yarn prettier --check *.ts",
"prepare": "tsc",
"test": "mocha test -r source-map-support/register",
"test:inspect": "mocha inspect test -r source-map-support/register"
},
"dependencies": {

@@ -26,19 +37,28 @@ "bin-links": "^3.0.0",

"prettier": "^2.3.0",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"source-map-support": "^0.5.19",
"typescript": "^4.2.4"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "mocha test -r source-map-support/register",
"test:inspect": "mocha inspect test -r source-map-support/register",
"lint": "yarn prettier --check *.ts",
"prepare": "tsc",
"clean": "git clean -x -f"
},
"engines": {
"node": "12.* || >= 14.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {

@@ -45,0 +65,0 @@ "node": "16.1.0",

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