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

yeoman-environment

Package Overview
Dependencies
Maintainers
9
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yeoman-environment - npm Package Compare versions

Comparing version 3.12.0 to 3.12.1

5

lib/util/transform.js

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

.map(override => override.split(/[\s+=]/))
.map(([pattern, status = 'skip']) => [path.join(absoluteDir, pattern), status])
.map(([pattern, status = 'skip']) => {
pattern = pattern.startsWith('!') ? `!${path.join(absoluteDir, pattern.slice(1))}` : path.join(absoluteDir, pattern);
return [pattern, status];
})
);

@@ -107,0 +110,0 @@ }

2

package.json
{
"name": "yeoman-environment",
"version": "3.12.0",
"version": "3.12.1",
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment",

@@ -5,0 +5,0 @@ "homepage": "http://yeoman.io",

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