lasso-js / lasso

Advanced JavaScript module bundler, asset pipeline and optimizer
582 stars 75 forks source link

Lasso config should support old and new resolver config #233

Closed austinkelleher closed 6 years ago

austinkelleher commented 6 years ago

Support both of the following:

Old:

const lassoConfig = {
  require: {
    transforms: [...],
    resolver: { ... }
  }
}

New:

const lassoConfig = {
  require: {
    transforms: [...]
  },
  resolver: { ... }
}