fixturify-project
Advanced tools
Comparing version 4.1.1 to 4.1.2
## 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 |
@@ -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) { |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29416
628
13
1