@ava/typescript
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -5,6 +5,9 @@ 'use strict'; | ||
const escapeStringRegexp = require('escape-string-regexp'); | ||
const isPlainObject = require('is-plain-object'); | ||
const pkg = require('./package.json'); | ||
function isPlainObject(x) { | ||
return x !== null && typeof x === 'object' && Reflect.getPrototypeOf(x) === Object.prototype; | ||
} | ||
function isValidExtensions(extensions) { | ||
@@ -11,0 +14,0 @@ return Array.isArray(extensions) && |
{ | ||
"name": "@ava/typescript", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "TypeScript provider for AVA", | ||
@@ -22,4 +22,3 @@ "engines": { | ||
"dependencies": { | ||
"escape-string-regexp": "^2.0.0", | ||
"is-plain-object": "^3.0.0" | ||
"escape-string-regexp": "^2.0.0" | ||
}, | ||
@@ -26,0 +25,0 @@ "devDependencies": { |
@@ -37,2 +37,4 @@ # @ava/typescript | ||
AVA searches your entire project for `*.js`, `*.cjs`, `*.mjs` and `*.ts` files (or other extensions you've configured). It will ignore such files found in the `rewritePaths` targets (e.g. `build/`). If you use more specific paths, for instance `build/main/`, you may need to change AVA's `files` configuration to ignore other directories. | ||
## Add additional extensions | ||
@@ -39,0 +41,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
6537
1
113
64
- Removedis-plain-object@^3.0.0
- Removedis-plain-object@3.0.1(transitive)