tags:

views:

9

answers:

0

Hello,

I'm trying to create a custom dijit build that only includes the rich text editor dijit.Editor and the single locale "en-us". I've created a acme.profile.js file that looks like this

dependencies = {
    stripConsole: "all",
    optimize: "comments",
    cssOptimize: "comments",
    mini: true,
    localeList:"en-us",
    layerOptimize: "comments",
    layers: [
    {
        name: "../dijit/dijit.js",
        resourceName: "dijit.Editor",
        dependencies: [
            "dijit.Editor"
        ]
    }
    ],
    prefixes: [
        ["digit","../dijit"]
    ]

}

but the build always copies all the nls files over to the release directory. How can I stop this from happening?