brunch / brunch.github.io

The website
https://brunch.io
MIT License
114 stars 99 forks source link

typo in the _docs/using-modules.md ? #283

Closed yurayko closed 6 years ago

yurayko commented 6 years ago

Hello.

// brunch-config
module.exports = {
  modules: {
    autoRequire: {
      // outputFileName : [ entryModule ]
      'javascripts/app.js': ['initialize']
    }
 }
};

With 'simple' skeleton is not worked. Must be a

// brunch-config
module.exports = {
  modules: {
    autoRequire: {
      // outputFileName : [ entryModule ]
      'app.js': ['initialize']
    }
 }
};

?