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

@ava/typescript

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ava/typescript - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

5

index.js

@@ -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": {

2

README.md

@@ -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 @@

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