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

standard-engine

Package Overview
Dependencies
Maintainers
9
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

standard-engine - npm Package Compare versions

Comparing version 7.1.0 to 7.2.0

4

CHANGELOG.md

@@ -5,2 +5,6 @@ # standard-engine Change Log

## 7.2.0 2017-11-07
- New Feature: `noDefaultIgnore` option to can now be used to turn off default ignores.
## 7.1.0 - 2017-06-21

@@ -7,0 +11,0 @@

4

index.js

@@ -137,3 +137,5 @@ module.exports.cli = require('./bin/cmd')

addIgnore(packageOpts.ignore)
addIgnore(DEFAULT_IGNORE)
if (!packageOpts.noDefaultIgnore) {
addIgnore(DEFAULT_IGNORE)
}

@@ -140,0 +142,0 @@ addGlobals(packageOpts.globals || packageOpts.global)

{
"name": "standard-engine",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",
"version": "7.1.0",
"version": "7.2.0",
"author": "Dan Flettre <flettre@gmail.com> (http://twitter.com/flettre/)",

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

# standard-engine [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
[travis-image]: https://img.shields.io/travis/Flet/standard-engine/master.svg
[travis-url]: https://travis-ci.org/Flet/standard-engine
[travis-image]: https://img.shields.io/travis/standard/standard-engine/master.svg
[travis-url]: https://travis-ci.org/standard/standard-engine
[npm-image]: https://img.shields.io/npm/v/standard-engine.svg

@@ -117,2 +117,16 @@ [npm-url]: https://npmjs.org/package/standard-engine

Some files are ignored by default:
```js
var DEFAULT_IGNORE = [
'**/*.min.js',
'**/bundle.js',
'coverage/**',
'node_modules/**',
'vendor/**'
]
```
You can disable these default ignores by setting `noDefaultIgnore` option to `true`.
### Hiding Warnings

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