@xfe-repo/web-app 1.3.9 → 1.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/env.js +1 -1
- package/package.json +3 -3
- package/tsconfig.json +1 -1
package/config/env.js
CHANGED
|
@@ -58,7 +58,7 @@ process.env.NODE_PATH = (process.env.NODE_PATH || '')
|
|
|
58
58
|
|
|
59
59
|
// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
|
|
60
60
|
// injected into the application via DefinePlugin in webpack configuration.
|
|
61
|
-
const REACT_APP = /^
|
|
61
|
+
const REACT_APP = /^(REACT_APP|XFE)_/i
|
|
62
62
|
|
|
63
63
|
function getClientEnvironment(publicUrl) {
|
|
64
64
|
const raw = Object.keys(process.env)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xfe-repo/web-app",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.11",
|
|
4
4
|
"bin": {
|
|
5
5
|
"xfe-web": "./bin/index.js"
|
|
6
6
|
},
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"webpack-manifest-plugin": "^4.0.2",
|
|
79
79
|
"workbox-webpack-plugin": "^7.0.0",
|
|
80
80
|
"yaml": "^2.3.4",
|
|
81
|
-
"@xfe-repo/
|
|
82
|
-
"@xfe-repo/
|
|
81
|
+
"@xfe-repo/eslint-config": "0.0.5",
|
|
82
|
+
"@xfe-repo/typescript-config": "0.0.6"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"react": "18.2.0",
|
package/tsconfig.json
CHANGED