Socket
Socket
Sign inDemoInstall

eslint-plugin-jest

Package Overview
Dependencies
Maintainers
11
Versions
325
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-jest - npm Package Compare versions

Comparing version 24.4.0 to 25.0.0-next.1

12

CHANGELOG.md

@@ -0,1 +1,13 @@

# [25.0.0-next.1](https://github.com/jest-community/eslint-plugin-jest/compare/v24.4.0...v25.0.0-next.1) (2021-09-13)
### Bug Fixes
* stop testing on Node 10 and 15 ([#891](https://github.com/jest-community/eslint-plugin-jest/issues/891)) ([bcd8d11](https://github.com/jest-community/eslint-plugin-jest/commit/bcd8d112fcd98a7652c767bd246d05101979239c))
### BREAKING CHANGES
* Drop support for Node 10 and 15
# [24.4.0](https://github.com/jest-community/eslint-plugin-jest/compare/v24.3.7...v24.4.0) (2021-07-21)

@@ -2,0 +14,0 @@

3

lib/rules/utils.js

@@ -64,4 +64,3 @@ "use strict";

*/
const isTemplateLiteral = (node, value) => node.type === _experimentalUtils.AST_NODE_TYPES.TemplateLiteral && node.quasis.length === 1 && ( // bail out if not simple
value === undefined || node.quasis[0].value.raw === value);
const isTemplateLiteral = (node, value) => node.type === _experimentalUtils.AST_NODE_TYPES.TemplateLiteral && node.quasis.length === 1 && (value === undefined || node.quasis[0].value.raw === value);

@@ -68,0 +67,0 @@ /**

{
"name": "eslint-plugin-jest",
"version": "24.4.0",
"version": "25.0.0-next.1",
"description": "Eslint rules for Jest",

@@ -95,3 +95,3 @@ "keywords": [

"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^14.0.0",

@@ -123,3 +123,3 @@ "@types/prettier": "^2.0.0",

"ts-node": "^9.0.0",
"typescript": "^4.0.0"
"typescript": "^4.4.0"
},

@@ -136,7 +136,11 @@ "peerDependencies": {

"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
"release": {
"branches": [
"main"
"main",
{
"name": "next",
"prerelease": true
}
],

@@ -143,0 +147,0 @@ "plugins": [

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