Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.

Remove messages from invariants

Changed files
+3
scripts
+3
scripts/babel/transformDevAssert.mjs
···
}
p.replaceWith(wrapWithDevCheck({ NODE: p.node }));
+
} else if (name === 'invariant') {
+
path.node[visited] = true;
+
path.node.arguments.length = 1;
}
},
},