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

jscodeshift

Package Overview
Dependencies
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jscodeshift - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

3

CHANGELOG.md

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

## [0.7.0] 2019-12-11
## Added
- Added jest snapshot utils (#297, @dogoku)
### Changed

@@ -10,0 +13,0 @@ - Moved from BSD to MIT license

2

dist/ignoreFiles.js

@@ -62,3 +62,3 @@ 'use strict';

function shouldIgnore(path) {
const matched = matchers.length ? mm.any(path, matchers, { dot:true }) : false;
const matched = matchers.length ? mm.isMatch(path, matchers, { dot:true }) : false;
return matched;

@@ -65,0 +65,0 @@ }

{
"name": "jscodeshift",
"version": "0.7.0",
"version": "0.7.1",
"description": "A toolkit for JavaScript codemods",

@@ -5,0 +5,0 @@ "repository": {

@@ -62,3 +62,3 @@ 'use strict';

function shouldIgnore(path) {
const matched = matchers.length ? mm.any(path, matchers, { dot:true }) : false;
const matched = matchers.length ? mm.isMatch(path, matchers, { dot:true }) : false;
return matched;

@@ -65,0 +65,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