sbt / sbt-rjs

RequireJs optimizer plugin for sbt-web
Other
39 stars 28 forks source link

removeCombined doesn't have any affect #73

Open tomleibo opened 8 years ago

tomleibo commented 8 years ago

Hi, I'm using sbt-rjs 1.0.7 with play 2.5.8.

my build.sbt contains:

pipelineStages := Seq(rjs)
RjsKeys.mainConfig := "main"

and my main.js contains this configuration:

requirejs.config({
        baseUrl : "/assets/scripts/",
        paths: {

        },
        generateSourceMaps : true,
        removeCombined : true
    });

Although removeCombined is set to true I can still fetch the *.js.src.js files and the mapping files too.

Is it a bug or misconfiguration?

Thanks