compile_web.hxml 485 B

123456789101112131415161718
  1. #copy templates files
  2. -cmd cp -r template/* bin/web/
  3. #Import config
  4. config_debug.hxml
  5. #this class wil be used as entry point for your app.
  6. -main beartek.agora.client.web.Main
  7. #JavaScript target
  8. -js bin/web/js/main.js
  9. #You can use -D source-map-content (requires Haxe 3.1+) to have the .hx
  10. #files directly embedded into the map file, this way you only have to
  11. #upload it, and it will be always in sync with the compiled .js even if
  12. #you modify your .hx files.
  13. -D source-map-content