filter-anything
Advanced tools
Comparing version 2.1.2 to 2.1.3
@@ -27,3 +27,5 @@ /* eslint-disable */ | ||
const external = Object.keys(pkg.dependencies || []) | ||
const plugins = [typescript({ useTsconfigDeclarationDir: true })] | ||
const plugins = [ | ||
typescript({ useTsconfigDeclarationDir: true, tsconfigOverride: { exclude: ['test/**/*'] } }), | ||
] | ||
@@ -30,0 +32,0 @@ // ------------------------------------------------------------------------------------------ |
{ | ||
"name": "filter-anything", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"sideEffects": false, | ||
@@ -41,25 +41,22 @@ "description": "A simple (TypeScript) integration of \"pick\" and \"omit\" to filter props of an object", | ||
"dependencies": { | ||
"is-what": "^3.7.1", | ||
"ts-toolbelt": "^6.3.6" | ||
"is-what": "^3.10.0", | ||
"ts-toolbelt": "^6.12.1" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^2.23.0", | ||
"@typescript-eslint/parser": "^2.23.0", | ||
"ava": "^3.5.0", | ||
"@typescript-eslint/eslint-plugin": "^2.34.0", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"ava": "^3.10.1", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.10.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-tree-shaking": "^1.8.0", | ||
"rollup": "^1.32.1", | ||
"rollup-plugin-typescript2": "^0.25.3", | ||
"ts-node": "^8.6.2", | ||
"typescript": "^3.8.3" | ||
"rollup-plugin-typescript2": "^0.27.1", | ||
"tsconfig-paths": "^3.9.0", | ||
"ts-node": "^8.10.2", | ||
"typescript": "^3.9.6" | ||
}, | ||
"ava": { | ||
"extensions": [ | ||
"ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
] | ||
"extensions": ["ts"], | ||
"require": ["tsconfig-paths/register", "ts-node/register"] | ||
} | ||
} |
@@ -8,4 +8,5 @@ { | ||
"include": [ | ||
"src/**/*" | ||
"src/**/*", | ||
"test/**/*" | ||
] | ||
} |
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
156943
707
11
Updatedis-what@^3.10.0
Updatedts-toolbelt@^6.12.1