Browse Source

Last fix for Huebee issue.

After some major debugging once again, I've concluded that the previous
webpack.mix.js worked fine, but threw an error when minifying the app.js
file.  The culprit is because the current app.js contains some newer
ECMAScript code that needs to be translated.  However, with the current
inclusion of huebee.js into the samme command, it seems to mess things
up.

Just as a potensial fix for now is to just ignore the issue, and have a
stab at it at a later date.  This reverts the "fixes" I've made before.
pull/215/head
Birger J. Nordølum 7 years ago
parent
commit
d3819a6a88
No known key found for this signature in database GPG Key ID: 1E2DC712B50089CC
  1. 6023
      public/css/app.css
  2. 1598
      public/js/app.js
  3. 3
      public/mix-manifest.json
  4. 3
      resources/assets/js/app.js
  5. 2
      webpack.mix.js

6023
public/css/app.css

File diff suppressed because one or more lines are too long

1598
public/js/app.js

File diff suppressed because one or more lines are too long

3
public/mix-manifest.json

@ -1,4 +1,3 @@
{
"/js/app.js": "/js/app.js?id=58b8bcf2d5c2eee74c51",
"/css/app.css": "/css/app.css?id=e405a67622368f195d1b"
"/css/app.css": "/css/app.css"
}

3
resources/assets/js/app.js

@ -1,6 +1,3 @@
import Huebee from 'huebee';
window.Huebee = Huebee;
$.when( $.ready ).then(function() {
if($('.message-container').length) {

2
webpack.mix.js

@ -11,7 +11,7 @@ let mix = require('laravel-mix');
|
*/
mix.js([
mix.scripts([
//'resources/assets/js/jquery-ui.min.js',
'resources/assets/js/huebee.js',
'resources/assets/js/app.js'

Loading…
Cancel
Save