deployment - Place concatenated js directly into html script tag using grunt? -
right grunt build places of concatenated js , css scripts.xxx.js, vendor.xxx.js, main.xxx.cs , vendor.xxx.cs. there way have grunt not put code these files, rather put them directly html?
so end with:
<html> .... <style> // of stuff in main.xxx.cs , vendor.xxx.cs </style> .... <script type="text/javascript"> // of stuff in scripts.xxx.js , vendor.xxx.js </script> .... </html>
i'm writing custom module existing tool , make lot easier deploy single html file embedded right in it. can done grunt or else? thoughts on approach?
Comments
Post a Comment