« Back to Index

RequireJs Build Script

View original Gist on GitHub

Tags: #js

app.build.js

/*
 * http://requirejs.org/docs/optimization.html
 *
 * Use NodeJs to execute the r.js optimization script on this build script
 * node r.js -o app.build.js
 *
 * See: https://github.com/jrburke/r.js/blob/master/build/example.build.js for an example build script
 *
 * If you specify just the name (with no includes/excludes) then all modules are combined into the "main" file.
 * You can include/exclude specific modules though if needed
 *
 * You can also set optimize: "none" (or more specific uglifyjs settings) if you need to.
 */
({
    appDir: "../../",
    baseUrl: "Assets/Scripts",
    dir: "../../project-build",
    modules: [
        {
            name: "main"
            /*
            include: ["App/people"],
            exclude: ["Utils/random"]
            */
        }
    ]
})