standard-engine
Advanced tools
Comparing version 7.1.0 to 7.2.0
@@ -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 @@ |
@@ -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 @@ |
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
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
371
0
32673
7
308