jss-plugin-rule-value-observable
Advanced tools
Comparing version 10.0.0-alpha.4 to 10.0.0-alpha.5
@@ -111,57 +111,2 @@ var global$1 = typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}; | ||
/** | ||
* Copyright (c) 2014-present, Facebook, Inc. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
var warning$1 = function warning() {}; | ||
{ | ||
var printWarning = function printWarning(format, args) { | ||
var len = arguments.length; | ||
args = new Array(len > 2 ? len - 2 : 0); | ||
for (var key = 2; key < len; key++) { | ||
args[key - 2] = arguments[key]; | ||
} | ||
var argIndex = 0; | ||
var message = 'Warning: ' + format.replace(/%s/g, function () { | ||
return args[argIndex++]; | ||
}); | ||
if (typeof console !== 'undefined') { | ||
console.error(message); | ||
} | ||
try { | ||
// --- Welcome to debugging React --- | ||
// This error was thrown as a convenience so that you can use this stack | ||
// to find the callsite that caused this warning to fire. | ||
throw new Error(message); | ||
} catch (x) {} | ||
}; | ||
warning$1 = function warning(condition, format, args) { | ||
var len = arguments.length; | ||
args = new Array(len > 2 ? len - 2 : 0); | ||
for (var key = 2; key < len; key++) { | ||
args[key - 2] = arguments[key]; | ||
} | ||
if (format === undefined) { | ||
throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument'); | ||
} | ||
if (!condition) { | ||
printWarning.apply(null, [format].concat(args)); | ||
} | ||
}; | ||
} | ||
var warning_1 = warning$1; | ||
var global$1$1 = typeof global$1 !== "undefined" ? global$1 : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}; | ||
@@ -2062,3 +2007,3 @@ var isArray = Array.isArray; // TODO: This should propably not be here, need to find a better place | ||
this.id = instanceCounter++; | ||
this.version = "10.0.0-alpha.4"; | ||
this.version = "10.0.0-alpha.5"; | ||
this.plugins = new PluginsRegistry(); | ||
@@ -2246,3 +2191,3 @@ this.options = { | ||
// eslint-ignore-next-line no-console | ||
warning_1(false, "SheetsManager: can't find sheet to unmanage"); | ||
warning(false, "SheetsManager: can't find sheet to unmanage"); | ||
return; | ||
@@ -2249,0 +2194,0 @@ } |
{ | ||
"name": "jss-plugin-rule-value-observable", | ||
"description": "JSS plugin for TC39 Observables support", | ||
"version": "10.0.0-alpha.4", | ||
"version": "10.0.0-alpha.5", | ||
"license": "MIT", | ||
@@ -49,3 +49,3 @@ "homepage": "https://cssinjs.org/", | ||
"devDependencies": { | ||
"jss": "^10.0.0-alpha.4" | ||
"jss": "^10.0.0-alpha.5" | ||
}, | ||
@@ -56,3 +56,3 @@ "dependencies": { | ||
}, | ||
"gitHead": "4efd47a4af45de9c8784d68f3a239f9a1d29c942" | ||
"gitHead": "37ddf2a900aae0d9bdc9a559e97fe40c7a4f716a" | ||
} |
81545
2340