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
I am trying to minify js using minify-inline . It is working properly but gulp is adding ="" in a file wherever it finds scriplets in a code.
e.g.
this is the code present in a source file
<%@ include file="../include.jsp"/%>
After executing a task for minification in gulp.js file:
I am trying to minify js using minify-inline . It is working properly but gulp is adding ="" in a file wherever it finds scriplets in a code.
e.g.
this is the code present in a source file
<%@ include file="../include.jsp"/%>
After executing a task for minification in gulp.js file:
gulp.task('minify-inline', function() {
gulp.src('src/JSP/*.jsp')
.pipe(minifyInline())
.pipe(gulp.dest('minify-inline/'))
});
it has changed the source code to
<%@ include="" file="../include.jsp" %="">
One more example
<% %> changes to <% %="">
The text was updated successfully, but these errors were encountered: