Socket
Socket
Sign inDemoInstall

jest-watcher

Package Overview
Dependencies
Maintainers
5
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-watcher - npm Package Compare versions

Comparing version 30.0.0-alpha.2 to 30.0.0-alpha.3

12

build/index.d.ts

@@ -210,10 +210,8 @@ /**

export declare interface WatchPluginClass {
new (options: {
config: Record<string, unknown>;
stdin: ReadStream;
stdout: WriteStream;
}): WatchPlugin;
}
export declare type WatchPluginClass = new (options: {
config: Record<string, unknown>;
stdin: ReadStream;
stdout: WriteStream;
}) => WatchPlugin;
export {};

@@ -174,3 +174,3 @@ /*!

this._pipe.write(CLEAR);
if (options && options.header) {
if (typeof options?.header === 'string' && options.header) {
this._pipe.write(`${options.header}\n`);

@@ -263,6 +263,6 @@ this._currentUsageRows = usageRows + options.header.split('\n').length;

const KEYS = exports.KEYS = {
ARROW_DOWN: '\u001b[B',
ARROW_LEFT: '\u001b[D',
ARROW_RIGHT: '\u001b[C',
ARROW_UP: '\u001b[A',
ARROW_DOWN: '\u001B[B',
ARROW_LEFT: '\u001B[D',
ARROW_RIGHT: '\u001B[C',
ARROW_UP: '\u001B[A',
BACKSPACE: Buffer.from(isWindows ? '08' : '7f', 'hex').toString(),

@@ -273,3 +273,3 @@ CONTROL_C: '\u0003',

ENTER: '\r',
ESCAPE: '\u001b'
ESCAPE: '\u001B'
};

@@ -397,3 +397,2 @@

}
_onResize = () => {

@@ -400,0 +399,0 @@ this._onChange();

{
"name": "jest-watcher",
"description": "Delightful JavaScript Testing.",
"version": "30.0.0-alpha.2",
"version": "30.0.0-alpha.3",
"main": "./build/index.js",

@@ -17,4 +17,4 @@ "types": "./build/index.d.ts",

"dependencies": {
"@jest/test-result": "30.0.0-alpha.2",
"@jest/types": "30.0.0-alpha.2",
"@jest/test-result": "30.0.0-alpha.3",
"@jest/types": "30.0.0-alpha.3",
"@types/node": "*",

@@ -24,3 +24,3 @@ "ansi-escapes": "^4.2.1",

"emittery": "^0.13.1",
"jest-util": "30.0.0-alpha.2",
"jest-util": "30.0.0-alpha.3",
"string-length": "^4.0.1"

@@ -44,3 +44,3 @@ },

},
"gitHead": "c04d13d7abd22e47b0997f6027886aed225c9ce4"
"gitHead": "e267aff33d105399f2134bad7c8f82285104f3da"
}
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