react-form-with-constraints
Advanced tools
Comparing version 0.16.1-beta.1 to 0.16.1
@@ -0,1 +1,7 @@ | ||
## v0.16.1 (2021/05/0) | ||
### Fixes | ||
- Fix jscodeshift: remove console.assert() from bundle | ||
## v0.16.0 (2020/10/22) | ||
@@ -2,0 +8,0 @@ |
@@ -106,6 +106,8 @@ (function (global, factory) { | ||
function assert(condition, message) { | ||
if (message === undefined) | ||
if (message === undefined) { | ||
console.assert(condition); | ||
else | ||
} | ||
else { | ||
console.assert(condition, message); | ||
} | ||
} | ||
@@ -112,0 +114,0 @@ |
@@ -5,8 +5,6 @@ "use strict"; | ||
function assert(condition, message) { | ||
if (message === undefined) | ||
console.assert(condition); | ||
else | ||
console.assert(condition, message); | ||
if (message === undefined) {} | ||
else {} | ||
} | ||
exports.assert = assert; | ||
//# sourceMappingURL=assert.js.map |
export function assert(condition, message) { | ||
if (message === undefined) | ||
console.assert(condition); | ||
else | ||
console.assert(condition, message); | ||
if (message === undefined) {} | ||
else {} | ||
} | ||
//# sourceMappingURL=assert.js.map |
{ | ||
"name": "react-form-with-constraints", | ||
"version": "0.16.1-beta.1", | ||
"version": "0.16.1", | ||
"repository": { | ||
@@ -71,3 +71,3 @@ "type": "git", | ||
}, | ||
"gitHead": "f707a459dd7ab873e4844f194ce83a4267129765" | ||
"gitHead": "1163a844f53941ed84296cb1a70c85f96df6fdfb" | ||
} |
@@ -383,6 +383,3 @@ # react-form-with-constraints | ||
], | ||
plugins: [ | ||
'@babel/plugin-proposal-class-properties', | ||
'@babel/plugin-proposal-object-rest-spread' | ||
] | ||
plugins: [] | ||
}; | ||
@@ -389,0 +386,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
556036
3952
402