From 057c88ce528dfb672ef26b545a986f2dc641d89c Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Wed, 4 Dec 2013 16:47:13 -0500 Subject: [PATCH] s/jsxConfig/commonerConfig/g --- grunt/config/jsx/jsx.js | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/grunt/config/jsx/jsx.js b/grunt/config/jsx/jsx.js index 6148fd40fc..9bac5e934a 100644 --- a/grunt/config/jsx/jsx.js +++ b/grunt/config/jsx/jsx.js @@ -10,7 +10,7 @@ var rootIDs = [ var getDebugConfig = function() { return { "debug": true, - "jsxConfig": grunt.config.data.pkg.jsxConfig, + "commonerConfig": grunt.config.data.pkg.commonerConfig, "constants": { "__VERSION__": grunt.config.data.pkg.version, "__DEV__": true @@ -34,7 +34,7 @@ var test = { return { "debug": true, "mocking": true, - "jsxConfig": grunt.config.data.pkg.jsxConfig, + "commonerConfig": grunt.config.data.pkg.commonerConfig, "constants": { "__VERSION__": grunt.config.data.pkg.version, "__DEV__": true @@ -51,7 +51,7 @@ var release = { getConfig: function() { return { "debug": false, - "jsxConfig": grunt.config.data.pkg.jsxConfig, + "commonerConfig": grunt.config.data.pkg.commonerConfig, "constants": { "__VERSION__": grunt.config.data.pkg.version, "__DEV__": false diff --git a/package.json b/package.json index c548cfe349..e55605f9f2 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "node": ">=0.10.0" }, "preferGlobal": true, - "jsxConfig": { + "commonerConfig": { "version": 1 } }