<FromGitter>
<damianham> @Jens0512 if you are starting out with a new application created with 'amber new myapp' then everything should be setup for webpack to bundle all your ES6 javascript code into public/dist/main.bundle.js. Webpack uses Babel to transform all javascript from ES6 (including the Amber class in lib/amber/assets/js/amber.js) to ES5. lib/amber/assets/js/amber.min.js is the transformed amber.js in ES5 format. Your code
<FromGitter>
... will work if webpack and babel are setup, as they are in a new generated app. There is no inconsistency between amber.js and amber.min.js, one is derived from the other.