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
my bundle has \n instead of \n, in all my .html files, and any escaped chars have . So there seems to be one too many back slashes throughout my templates.
Any idea or suggestion how I could fix this?
(works as expected with watchify)
The text was updated successfully, but these errors were encountered:
This sounds like a bug in the stringify transform. Maybe something related to the interaction between stringify and babelify. Try it with Browserify directly (rather than going through Simplifyify) and I suspect that you'll see the same behavior
When using the following
"browserify": {
"transform": [
"babelify",
[
"stringify",
{
"extensions": [
".html"
]
}
]
]
}
my bundle has \n instead of \n, in all my .html files, and any escaped chars have . So there seems to be one too many back slashes throughout my templates.
Any idea or suggestion how I could fix this?
(works as expected with watchify)
The text was updated successfully, but these errors were encountered: