This repository has been archived by the owner on Sep 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Sourcemap : false create a sourcemap #1
Comments
Are you saying that it is generating a sourcemap when the setting is |
Yes |
Ok, thanks for reporting this
|
Sliverside
changed the title
Sourcemap : false did not work
Sourcemap : false create a sourcemap
Jun 7, 2017
|
Thanks so much, I'll take a look when I have a chance. |
Ok thank you ! |
Thank you so much for reporting this and including the code sample, it fixed the issue. |
I am happy to have helped you ! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hi,
I fixed that by editing pyton file line 244-245 from that :
if settings["sourcemap"]: rules.append("--sourcemap")
to that :
if not settings["sourcemap"]: rules.append("--sourcemap=none")
sorry for my english...
The text was updated successfully, but these errors were encountered: