-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Gulp Build: fix installed gulp modules returning placeholder value #7304
Conversation
Attempted fix for issue => #7287
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I do (taken from readme):
gulp build --modules=openxBidAdapter,rubiconBidAdapter,sovrnBidAdapter
My prebid.js
is built with following piece of code:
A.installedModules=[""openxBidAdapter","rubiconBidAdapter","sovrnBidAdapter""]
Then, when I try to load that .js in some html page it crashes because of duplicate ""
.
Doing the same command on master
branch it looks fine. Here is what I get on master
:
E.installedModules=["openxBidAdapter","rubiconBidAdapter","sovrnBidAdapter"]
@FilipStamenkovic thank you. Let me check what is going on with the extra quotes. |
Change regex to specific string for attempted fix on issue => #7287