mozilla / remote-newtab

Remotely-hosted New Tab Page
https://mozilla.github.io/remote-newtab/src/
Mozilla Public License 2.0
15 stars 7 forks source link

Make platform, platform fixtures development only #166

Open k88hudson opened 8 years ago

k88hudson commented 8 years ago

The web shims in lib/platform and lib/platform-placeholder should only be included in the bundle if DEVELOPMENT is true in our configuration object

This should be as simple as

if (__CONFIG__.DEVELOPMENT) {
  require(lib/platform-placeholder)
  ...
}

And webpack's production optimization process will remove the unused code.