New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hey-listen

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hey-listen - npm Package Compare versions

Comparing version

to
1.0.6

package-lock.json

14

CHANGELOG.md

@@ -5,20 +5,24 @@ # Changelog

## [1.0.6] 2019-04-10
- Fixing Rollup config.
## [1.0.5] 2018-05-16
* Fixing Rollup config.
- Fixing Rollup config.
## [1.0.3] 2018-05-13
* Adding UMD bundles via Rollup
- Adding UMD bundles via Rollup
## [1.0.2] 2018-05-09
* Point to correct types
- Point to correct types
## [1.0.1] 2018-05-09
* Updating docs
- Updating docs
## [1.0.0] 2018-05-09
* First release
- First release

@@ -1,2 +0,1 @@

var HEY_LISTEN = 'Hey, listen! ';
var warning = function () { };

@@ -7,3 +6,3 @@ var invariant = function () { };

if (!check && typeof console !== 'undefined') {
console.warn(HEY_LISTEN + message);
console.warn(message);
}

@@ -13,3 +12,3 @@ };

if (!check) {
throw new Error(HEY_LISTEN.toUpperCase() + message);
throw new Error(message);
}

@@ -19,2 +18,2 @@ };

export { warning, invariant };
export { invariant, warning };
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.heyListen = {})));
}(this, (function (exports) { 'use strict';
(global = global || self, factory(global.heyListen = {}));
}(this, function (exports) { 'use strict';
var HEY_LISTEN = 'Hey, listen! ';
exports.warning = function () { };

@@ -13,3 +12,3 @@ exports.invariant = function () { };

if (!check && typeof console !== 'undefined') {
console.warn(HEY_LISTEN + message);
console.warn(message);
}

@@ -19,3 +18,3 @@ };

if (!check) {
throw new Error(HEY_LISTEN.toUpperCase() + message);
throw new Error(message);
}

@@ -27,2 +26,2 @@ };

})));
}));

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

!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(e.heyListen={})}(this,function(e){"use strict";e.warning=function(){},e.invariant=function(){},"production"!==process.env.NODE_ENV&&(e.warning=function(e,n){e||"undefined"==typeof console||console.warn("Hey, listen! "+n)},e.invariant=function(e,n){if(!e)throw new Error("Hey, listen! ".toUpperCase()+n)}),Object.defineProperty(e,"__esModule",{value:!0})});
!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((n=n||self).heyListen={})}(this,function(n){"use strict";n.warning=function(){},n.invariant=function(){},"production"!==process.env.NODE_ENV&&(n.warning=function(n,e){n||"undefined"==typeof console||console.warn(e)},n.invariant=function(n,e){if(!n)throw new Error(e)}),Object.defineProperty(n,"__esModule",{value:!0})});

@@ -5,3 +5,2 @@ 'use strict';

var HEY_LISTEN = 'Hey, listen! ';
exports.warning = function () { };

@@ -12,3 +11,3 @@ exports.invariant = function () { };

if (!check && typeof console !== 'undefined') {
console.warn(HEY_LISTEN + message);
console.warn(message);
}

@@ -18,5 +17,5 @@ };

if (!check) {
throw new Error(HEY_LISTEN.toUpperCase() + message);
throw new Error(message);
}
};
}
{
"name": "hey-listen",
"version": "1.0.5",
"description":
"Popular dev-ex functions like warning and invariant, with added childhood flashbacks.",
"version": "1.0.6",
"description": "Warning and invariant dev-ex messaging.",
"main": "lib/index.js",

@@ -20,3 +19,6 @@ "types": "./lib/index.d.ts",

},
"keywords": ["warning", "invariant"],
"keywords": [
"warning",
"invariant"
],
"author": "Matt Perry",

@@ -31,10 +33,15 @@ "license": "MIT",

"@types/node": "^10.0.6",
"jest": "^22.4.3",
"jest": "^24.7.1",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0",
"ts-jest": "^22.4.5",
"typescript": "^2.8.3",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0"
"typescript": "^2.8.3"
},
"jest": {
"moduleFileExtensions": ["ts", "js", "json", "node"],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"transform": {

@@ -48,3 +55,6 @@ "\\.(ts)$": "../node_modules/ts-jest/preprocessor.js"

"singleQuote": true
},
"dependencies": {
"rollup": "^1.9.2"
}
}

@@ -12,4 +12,2 @@ # Hey, Listen!

Except, of course, every message is prepended with "Hey, listen!" and no there's no way of turning this off.
The library checks against `process.env.NODE_ENV` to minify away messages in production.

@@ -38,3 +36,3 @@

warning(false, 'Warning message'); // console.warn "Hey, listen! Warning message"
warning(false, 'Warning message'); // console.warn "Warning message"
```

@@ -47,3 +45,3 @@

invariant(false, 'Warning message'); // throws "HEY, LISTEN! Warning message"
invariant(false, 'Error message'); // throws "Error message"
```

@@ -7,3 +7,3 @@ import { invariant } from '../index';

} catch (e) {
expect(e).toEqual(new Error('HEY, LISTEN! Test'));
expect(e).toEqual(new Error('Test'));
}

@@ -10,0 +10,0 @@ });

export type DevMessage = (check: boolean, message: string) => void;
const HEY_LISTEN = 'Hey, listen! ';
let warning: DevMessage = () => {};

@@ -10,3 +9,3 @@ let invariant: DevMessage = () => {};

if (!check && typeof console !== 'undefined') {
console.warn(HEY_LISTEN + message);
console.warn(message);
}

@@ -17,3 +16,3 @@ };

if (!check) {
throw new Error(HEY_LISTEN.toUpperCase() + message);
throw new Error(message);
}

@@ -20,0 +19,0 @@ };