-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
u3 package is broken #593
Comments
It doesn't seem like this codebase uses u3. It's not in our |
@vans163 I face the same problem, so I need to override the Here is the modified one var cache = function (fn) {
var called = false,
store;
if (!(fn instanceof Function)) {
called = true;
store = fn;
fn = null;
}
return function () {
if (!called) {
called = true;
store = fn.apply(this, arguments);
fn = null;
}
return store;
};
};
module.exports = cache; |
@mehtaphysical looks like it is in our lock file and dependency tree. Try |
@volovyk-s I see. We should consider removing this dependency. According to their GitHub repo it is:
|
@vans163 |
It seems the u3 package used is outdated and does not follow modern javascript rules.
Also is there a way to build a static non-browser build (so no window. is included)?
The text was updated successfully, but these errors were encountered: