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
{{ message }}
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
I wiped out public/lib, and re-installed the Bower dependencies. angular-file-upload has resolved to 1.1.8; even though bower.json has "angular-file-upload": "~1.1.5"
In angularFileUpload 1.1.8, the asset files have moved from public/lib/angular-file-upload/ to public/lib/angular-file-upload/dist; and there's only a .min.js file. The project assets config is looking for angularFileUpload in the former location. Thus, I'm receiving an injection error.
I'm able to resolve it by changing the assets config of default (& production) to the new location; public/lib/angular-file-upload/dist/angular-file-upload.min.js
Can anyone else confirm this is an issue?
The text was updated successfully, but these errors were encountered:
@mleanos it should match to version 1.1.8 as there is a ~ in the front with will match any patch version. I think the issue is with angular file uploads semver. They pushed a major/minor release to a patch version....
Answer to your question is that yes I am seeing the same issue and this needs to be fixed. I did a bower update and got 1.1.8 which breaks MEAN. Looks to me like there is a 1.2 release. If we are going to work on anything maybe we should go to that?
I'm not sure that we need to decide on which version to go with at this exact moment. As each version after 1.1.6 has the dist folder. So the same fix can be applied.
I'll submit a PR, for the above fixes. Afterward, I'll look into which version might be best, and go through some tests.
I wiped out public/lib, and re-installed the Bower dependencies. angular-file-upload has resolved to 1.1.8; even though bower.json has
"angular-file-upload": "~1.1.5"
In angularFileUpload
1.1.8
, the asset files have moved frompublic/lib/angular-file-upload/
topublic/lib/angular-file-upload/dist
; and there's only a.min.js
file. The project assets config is looking for angularFileUpload in the former location. Thus, I'm receiving an injection error.I'm able to resolve it by changing the assets config of default (& production) to the new location;
public/lib/angular-file-upload/dist/angular-file-upload.min.js
Can anyone else confirm this is an issue?
The text was updated successfully, but these errors were encountered: