gulp-useref
gulp-useref copied to clipboard
Howto dynamic generate filepath in runtime?
I have a idea such as for example:
<!DOCTYPE html>
<html>
<head>
<title>My index</title>
<!-- build:css css/combo{+new Date()}.css -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/common.css">
<!-- endbuild -->
</head>
<body>
<h1>Documents</h1>
</body>
</html>
if i have multiplage, and i just want to write the filepath in such format css/combo{+new Date()}.css`, any clues?
+1 would be great to be able to generate dynamic output paths