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

@guidesmiths/license-checker

Package Overview
Dependencies
Maintainers
5
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@guidesmiths/license-checker - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

12

CHANGELOG.md

@@ -5,2 +5,14 @@ # Changelog

### [2.0.1](https://github.com/guidesmiths/license-checker/compare/v2.0.0...v2.0.1) (2022-05-09)
### 🔄 Code Refactoring
* make regex function compatible with node versions prior to v14 ([262e06e](https://github.com/guidesmiths/license-checker/commit/262e06eee46d54240523bcc97b3b0f86798d37d0))
### 🔧 Others
* update package description ([c3e24a6](https://github.com/guidesmiths/license-checker/commit/c3e24a6edeeb2f0b07bb72eccf0e7b7da100e788))
## [2.0.0](https://github.com/guidesmiths/license-checker/compare/v1.3.0...v2.0.0) (2022-04-26)

@@ -7,0 +19,0 @@

4

package.json
{
"name": "@guidesmiths/license-checker",
"version": "2.0.0",
"description": "License checker for GuideSmiths projects",
"version": "2.0.1",
"description": "Audit your NPM dependencies and reject any forbidden license.",
"main": "index.js",

@@ -6,0 +6,0 @@ "bin": {

@@ -89,3 +89,3 @@ const fs = require('fs');

try {
const pattern = /^\/(?<pattern>.+)\/$/.exec(arg)?.groups?.pattern;
const pattern = (/^\/(?<pattern>.+)\/$/.exec(arg) || { groups: {} }).groups.pattern;
return { ...total, valid: [...total.valid, pattern ? new RegExp(pattern) : arg] };

@@ -92,0 +92,0 @@ } catch (e) {

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