ck86 / gulp-bower-files

Build gulp.src() of your bower packages main files.
80 stars 13 forks source link

Override main with several files ? #22

Closed nfroidure closed 10 years ago

nfroidure commented 10 years ago

How to achieve this ?

ck86 commented 10 years ago
{
  "overrides": {
    "PACKAGE": {
      "main": [
        "./file.one",
        "./file.two"
      ]
    }
  }
}
nfroidure commented 10 years ago

Thx, didn't knew it was possible.