Probable issue with uglify, causing signalr-client to fail to build in production
See original GitHub issueRefer to https://github.com/aspnet/SignalR/issues/729 https://github.com/aspnet/SignalR/issues/765
for the issue I raised with the signalr-client team.
I have created a sample repo at https://github.com/williamBurgeson/signalr-client_angular-cli
Quite simply, download the above repo and run ng build --prod, and you will get the error. Note the signalr-client is not hosted in the usual place in npm (I use yarn, but the principles are the same; it is hosted at https://dotnet.myget.org/f/aspnetcore-ci-dev/npm/).
Failing that, run the steps I described in the first comment from that thread: https://github.com/aspnet/SignalR/issues/729#issue-250646811
ERROR in vendor.a480795b35d0d09f117a.bundle.js from UglifyJs
Unexpected token: name (HubConnection) [vendor.a480795b35d0d09f117a.bundle.js:15675,6]
They have fixed the main problem, which was that when I included the current (at the time) version of signalr-client, it errored out when running ng build. Now that is fixed, but it still errors when running ng build --prod
If you see the last comments on that issue, they have implied the only way to fix this is to run ng eject (see https://github.com/aspnet/SignalR/issues/729#issuecomment-324569702) due to uglify not supporting ES6.
Is there anything which can be done from your end to mitigate this error, without having to ng eject? e.g. switch out dependencies or dependency versions etc. I’m not an expert on uglify by any means but would there be an option to use a newer version which does support ES6? (I assume the angular stack all still compiles down to ES5 to keep uglify happy if what they are saying is correct)
Issue Analytics
- State:
- Created 6 years ago
- Reactions:4
- Comments:8 (3 by maintainers)
For anyone that want to use the signalr-client npm package with angular-cli: I added the es5 jsfiles in .angular-cli.json under scripts.
In my signalR service I added two declarations:
this one for in development:
import * as signalR from '@aspnet/signalr-client';
this one for the production builddeclare var signalR: any;
Its not ideal but works. see: https://github.com/Marcelh1983/signalr-exampleAngular-cli has updated 1.5.0. It’s solved this problem.
Current version of @aspnet/signalr-client: ‘1.0.0-alpha2-final’ in my project. Now i’m using import { HubConnection } from ‘@aspnet/signalr-client’ without errors while production building.
Angular-cli releases link: https://github.com/angular/angular-cli/releases