Created
September 26, 2012 17:38
-
-
Save tvpmb/3789404 to your computer and use it in GitHub Desktop.
Google Analytics for RequireJS Build Process (GruntJS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
requirejs: { | |
// Include the main configuration file. | |
mainConfigFile: "app/config.js", | |
// Output file. | |
out: "dist/debug/require.js", | |
// Root application module. | |
name: "config", | |
// Do not wrap everything in an IIFE. | |
wrap: false, | |
// This is to allow GA to not be compiled in | |
paths: { | |
ga: "empty:" | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment