Remove unused grunt jsx config options

Since 5466d0a063, the `__DEV__` isn't used any more. I can't find anything that uses the `debug` flag either.
This commit is contained in:
Ben Alpert
2014-01-17 02:02:47 -08:00
parent 17de85689e
commit 703a29c0b2
+3 -9
View File
@@ -9,11 +9,9 @@ var rootIDs = [
var getDebugConfig = function() {
return {
"debug": true,
"commonerConfig": grunt.config.data.pkg.commonerConfig,
"constants": {
"__VERSION__": grunt.config.data.pkg.version,
"__DEV__": true
"__VERSION__": grunt.config.data.pkg.version
}
};
};
@@ -32,12 +30,10 @@ var test = {
]),
getConfig: function() {
return {
"debug": true,
"mocking": true,
"commonerConfig": grunt.config.data.pkg.commonerConfig,
"constants": {
"__VERSION__": grunt.config.data.pkg.version,
"__DEV__": true
"__VERSION__": grunt.config.data.pkg.version
}
};
},
@@ -50,11 +46,9 @@ var release = {
rootIDs: rootIDs,
getConfig: function() {
return {
"debug": false,
"commonerConfig": grunt.config.data.pkg.commonerConfig,
"constants": {
"__VERSION__": grunt.config.data.pkg.version,
"__DEV__": false
"__VERSION__": grunt.config.data.pkg.version
}
};
},