Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apollographql/invariant-packages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ts-invariant@0.8.2
Choose a base ref
...
head repository: apollographql/invariant-packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ts-invariant@0.9.0
Choose a head ref
  • 9 commits
  • 9 files changed
  • 2 contributors

Commits on Jul 12, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d1b320e View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2e9f7d0 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d38c44a View commit details
  4. Provide invariant.debug as wrapper for console.debug (#155)

    Messages logged with invariant.debug will be hidden by default, but can
    be exposed by calling setVerbosity("debug").
    benjamn authored Jul 12, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    be3bfe4 View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a7356d4 View commit details
  6. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ffdbfba View commit details
  7. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    172b2a7 View commit details
  8. Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    e291b9c View commit details
  9. Publish

     - rollup-plugin-invariant@0.9.0
     - ts-invariant@0.9.0
    benjamn committed Jul 12, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    31f1ac3 View commit details
368 changes: 80 additions & 288 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -23,9 +23,9 @@
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^15.12.2",
"@types/node": "^16.3.1",
"lerna": "^4.0.0",
"mocha": "^8.3.2",
"mocha": "^9.0.2",
"rollup": "^2.41.5",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
8 changes: 4 additions & 4 deletions packages/rollup-plugin-invariant/package-lock.json
2 changes: 1 addition & 1 deletion packages/rollup-plugin-invariant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-invariant",
"version": "0.8.4",
"version": "0.9.0",
"author": "Ben Newman <ben@apollographql.com>",
"description": "Rollup plugin to strip invariant(condition, message) strings in production",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/rollup-plugin-invariant/src/plugin.ts
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ export default function invariantPlugin(options: PluginOptions = {}) {

if (node.callee.type === "MemberExpression" &&
isIdWithName(node.callee.object, "invariant") &&
isIdWithName(node.callee.property, "log", "warn", "error")) {
isIdWithName(node.callee.property, "debug", "log", "warn", "error")) {
return b.logicalExpression("||", makeNodeEnvTest(), node);
}
},
2 changes: 1 addition & 1 deletion packages/ts-invariant/package-lock.json
2 changes: 1 addition & 1 deletion packages/ts-invariant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-invariant",
"version": "0.8.2",
"version": "0.9.0",
"author": "Ben Newman <ben@apollographql.com>",
"description": "TypeScript implementation of invariant(condition, message)",
"license": "MIT",
16 changes: 10 additions & 6 deletions packages/ts-invariant/src/invariant.ts
Original file line number Diff line number Diff line change
@@ -28,20 +28,24 @@ export function invariant(
}
}

const verbosityLevels = ["log", "warn", "error", "silent"] as const;
type VerbosityLevel = (typeof verbosityLevels)[number];
type ConsoleMethodName = Exclude<VerbosityLevel, "silent">;
const verbosityLevels = ["debug", "log", "warn", "error", "silent"] as const;
export type VerbosityLevel = (typeof verbosityLevels)[number];
export type ConsoleMethodName = Exclude<VerbosityLevel, "silent">;
let verbosityLevel = verbosityLevels.indexOf("log");

function wrapConsoleMethod<M extends ConsoleMethodName>(method: M) {
function wrapConsoleMethod<M extends ConsoleMethodName>(name: M) {
return function () {
if (verbosityLevels.indexOf(method) >= verbosityLevel) {
return console[method].apply(console, arguments as any);
if (verbosityLevels.indexOf(name) >= verbosityLevel) {
// Default to console.log if this host environment happens not to provide
// all the console.* methods we need.
const method = console[name] || console.log;
return method.apply(console, arguments as any);
}
} as (typeof console)[M];
}

export namespace invariant {
export const debug = wrapConsoleMethod("debug");
export const log = wrapConsoleMethod("log");
export const warn = wrapConsoleMethod("warn");
export const error = wrapConsoleMethod("error");
21 changes: 19 additions & 2 deletions packages/ts-invariant/src/tests.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import assert from "assert";
import defaultExport, {
ConsoleMethodName,
invariant,
InvariantError,
setVerbosity,
@@ -80,7 +81,7 @@ describe("ts-invariant", function () {
});

function checkConsoleMethod(
name: "log" | "warn" | "error",
name: ConsoleMethodName,
expectOutput: boolean,
) {
const argsReceived: any[][] = [];
@@ -103,6 +104,10 @@ describe("ts-invariant", function () {
}
}

it("invariant.debug", function () {
checkConsoleMethod("debug", false);
});

it("invariant.log", function () {
checkConsoleMethod("log", true);
});
@@ -116,30 +121,42 @@ describe("ts-invariant", function () {
});

it("setVerbosity", function () {
checkConsoleMethod("debug", false);
checkConsoleMethod("log", true);
checkConsoleMethod("warn", true);
checkConsoleMethod("error", true);

assert.strictEqual(setVerbosity("warn"), "log");

checkConsoleMethod("debug", false);
checkConsoleMethod("log", false);
checkConsoleMethod("warn", true);
checkConsoleMethod("error", true);

assert.strictEqual(setVerbosity("error"), "warn");

checkConsoleMethod("debug", false);
checkConsoleMethod("log", false);
checkConsoleMethod("warn", false);
checkConsoleMethod("error", true);

assert.strictEqual(setVerbosity("silent"), "error");
assert.strictEqual(setVerbosity("debug"), "error");

checkConsoleMethod("debug", true);
checkConsoleMethod("log", true);
checkConsoleMethod("warn", true);
checkConsoleMethod("error", true);

assert.strictEqual(setVerbosity("silent"), "debug");

checkConsoleMethod("debug", false);
checkConsoleMethod("log", false);
checkConsoleMethod("warn", false);
checkConsoleMethod("error", false);

assert.strictEqual(setVerbosity("log"), "silent");

checkConsoleMethod("debug", false);
checkConsoleMethod("log", true);
checkConsoleMethod("warn", true);
checkConsoleMethod("error", true);