This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Support debug and release builds #10
Comments
Syntax ideas for HIPPOFACTS (to be clear: these are alternatives, not suggesting we do all of them!): 1.
|
The timestamp thing actually makes me wonder: 4. Choose most recent from a
|
Closed
no longer relevant after merging #121. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Many build systems have the concept of debug and release builds (under various names), and output these at different paths.
As a developer, I want to maintain a single HIPPOFACTS file such that:
hippofactory .
syntaxNot all file paths will necessarily change in the same way, e.g. WASM modules may change between
bin/debug
andbin/release
directories while CSS files remain understyles
and JavaScript files change fromdist/*.js
todist/*.min.js
.To be decided: should we provide a way to map file paths e.g.
bin/debug/*.wasm => bin
? This allows file paths to be the same regardless of debug vs release... but in that case shouldn't the build system be putting them in the 'right' place?Hippofactory should be agnostic about build systems; therefore, any knowledge of paths, filenames, etc. should be confined to the HIPPOFACTS file.
The text was updated successfully, but these errors were encountered: