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