You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"use strict";// Copyright (c) .NET Foundation. All rights reserved.// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.Object.defineProperty(exports,"__esModule",{value: true});varLogLevel;(function(LogLevel){LogLevel[LogLevel["Trace"]=0]="Trace";LogLevel[LogLevel["Information"]=1]="Information";LogLevel[LogLevel["Warning"]=2]="Warning";LogLevel[LogLevel["Error"]=3]="Error";LogLevel[LogLevel["None"]=4]="None";})(LogLevel=exports.LogLevel||(exports.LogLevel={}));//# sourceMappingURL=ILogger.js.map
The existing parser missed (LogLevel = exports.LogLevel || (exports.LogLevel = {})) the assignment expression in right.
npm package @aspnet/signalr file /dist/cjs/IHubProtocol.js, this is essentially an empty file. Don't know how to reasonably identify this is commonjs file.
"use strict";// Copyright (c) .NET Foundation. All rights reserved.// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.Object.defineProperty(exports,"__esModule",{value: true});//# sourceMappingURL=IHubProtocol.js.map
The text was updated successfully, but these errors were encountered:
3cp
changed the title
missing catch in usesCommonJs
missing catch in parse.usesCommonJs
Apr 7, 2018
3cp
changed the title
missing catch in parse.usesCommonJs
missed cases in parse.usesCommonJs
Apr 7, 2018
Two missed cases.
@aspnet/signalr
file/dist/cjs/ILogger.js
The existing parser missed
(LogLevel = exports.LogLevel || (exports.LogLevel = {}))
the assignment expression inright
.This can be fixed by modifying this line:
r.js/build/jslib/parse.js
Line 758 in 1752638
To:
@aspnet/signalr
file/dist/cjs/IHubProtocol.js
, this is essentially an empty file. Don't know how to reasonably identify this is commonjs file.The text was updated successfully, but these errors were encountered: