Plain is headed towards 1.0! Subscribe for development updates →
Build JavaScript files with esbuild.
**/assets/**/*.esbuilt.*
1from .cli import compile, dev 2 3 4def run_dev_compile(): 5 # This will run by itself as a command, so it can exit() 6 dev([], standalone_mode=True) 7 8 9def run_compile(): 10 # Standalone mode prevents it from exit()ing 11 compile([], standalone_mode=False)