gulp-htmlprocessor
Version:
Process html files at build time to modify them depending on the release environment
24 lines (19 loc) • 536 B
HTML
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Define Multiple Targets</title>
</head>
<body>
<!-- build:remove -->
<p>This will be removed in all targets</p>
<!-- /build -->
<!-- build:remove:mult_one -->
<p>This will be removed target mult_one</p>
<!-- /build -->
<!-- build:remove:mult_two,mult_three -->
<p>This will be removed targets mult_two and mult_three</p>
<!-- /build -->
</body>
</html>