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
{{ message }}
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
Would be useful to be able to handle HTML files during the build process. Processing should include finding dependencies and rewriting paths to point to hashed/versioned paths.
Benefits
A frequent pain-point is transitioning a hard-coded html file to a production environment. Generally, I've been happy to add an extra minute's overhead of cloning the file and rewriting urls as it's a trade-off made to preserve a simple codebase. That being said, it's a pain when making frequent, incremental deployments. Like most repetitive tasks, it's ripe for automation.
Might help to reduce the time necessary to go from an empty project to a wired up, viewable project.
Moving the bootstrapping html-document out of the build script would be great.
Handling index resolution, eg: foo/index.html is served from both foo/index.html and foo/. Might need to consider expanding the notion of urls to cover multiple urls per file.
The text was updated successfully, but these errors were encountered:
While most compilation units (js, css, etc) can be generated agnostic of the outcomes of their dependencies, HTML files require explicit links to their dependencies assets.
When compiling, will require a means to defer the completion of html files until urls can be generated for the linked assets.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Would be useful to be able to handle HTML files during the build process. Processing should include finding dependencies and rewriting paths to point to hashed/versioned paths.
Benefits
Precedents
Problems to solve
foo/index.html
is served from bothfoo/index.html
andfoo/
. Might need to consider expanding the notion of urls to cover multiple urls per file.The text was updated successfully, but these errors were encountered: