-
start up time: the time from "the command is executed" to the time "load event is triggered in browser".
-
root HMR time: the time from "the root file is changed" to the time "that file is executed in browser".
-
leaf HMR time: the time from "the leaf file is changed" to the time "that file is executed in browser".
-
cold start: the dependency optimization cache is deleted before each run
-
hot start: the dependency optimization cache exists by each run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# A Bash script to run a TDD loop for building a Python module to pass tests. | |
set -euo pipefail | |
# How many times to loop. | |
ATTEMPTS=4 | |
# The system prompt to use when creating the initial version. |
See this StackOverflow thread
First off, include the directive at the end of this gist.
- On your open button, make sure to use
@click.stop
to prevent the open click event from closing your modal. - On your modal, add the
v-click-outside
directive and points it at a function to call when clicked outside.