@ombori/ga-settings
Advanced tools
Comparing version 2.114.1 to 2.116.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [2.116.0](https://github.com/ombori/gridapp/compare/v2.115.1...v2.116.0) (2021-11-25) | ||
### Features | ||
* development env proper settings like in prod ([3e06923](https://github.com/ombori/gridapp/commit/3e069234d4d6a3b5d8519616b86d560d606c2486)) | ||
## [2.114.1](https://github.com/ombori/gridapp/compare/v2.114.0...v2.114.1) (2021-11-22) | ||
@@ -8,0 +19,0 @@ |
@@ -22,3 +22,8 @@ var __assign = (this && this.__assign) || function () { | ||
var settings = require('settings/index.json'); | ||
globalSettings = settings.app.gridApp.settings; | ||
globalSettings = __assign(__assign({}, settings.app.gridApp.settings), { _general: settings.general, _buildInfo: { | ||
id: 'development', | ||
buildId: 'development', | ||
name: 'development', | ||
iconUrl: 'development', | ||
} }); | ||
globalInfo = settings.general; | ||
@@ -25,0 +30,0 @@ } |
{ | ||
"name": "@ombori/ga-settings", | ||
"version": "2.114.1", | ||
"version": "2.116.0", | ||
"main": "dist/index.js", | ||
@@ -19,3 +19,3 @@ "license": "UNLICENSED", | ||
}, | ||
"gitHead": "a88619e0230db4fe81407829e8ccbd00248f542b" | ||
"gitHead": "760406a206619f0bfaebf6970f345685c7b239d5" | ||
} |
@@ -71,3 +71,12 @@ import { useEffect, useMemo, useState } from 'react'; | ||
const settings = require('settings/index.json'); | ||
globalSettings = settings.app.gridApp.settings; | ||
globalSettings = { | ||
...settings.app.gridApp.settings, | ||
_general: settings.general, | ||
_buildInfo: { | ||
id: 'development', | ||
buildId: 'development', | ||
name: 'development', | ||
iconUrl: 'development', | ||
}, | ||
}; | ||
globalInfo = settings.general; | ||
@@ -74,0 +83,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24029
487