Webpack refactor

- added JSX support (webpack + robofile
- added public.js bundle
- refactored webpack config for clarity
- added settings.jsx form example
- fixed acceptance test failing on login
This commit is contained in:
Jonathan Labreuille
2015-08-19 19:29:11 +02:00
parent b8f0ec4e88
commit bc65836c31
7 changed files with 330 additions and 126 deletions

View File

@@ -1,12 +1,13 @@
define('admin', [
'mailpoet',
'jquery',
'handlebars',
], function(MailPoet, jQuery, Handlebars) {
jQuery(function($) {
// dom ready
$(function() {
'jquery'
],
function(MailPoet, jQuery) {
jQuery(function($) {
// dom ready
$(function() {
});
});
});
});
}
);