@redhat-cloud-services/frontend-components-config 4.6.10 → 4.6.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/plugins.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redhat-cloud-services/frontend-components-config",
3
- "version": "4.6.10",
3
+ "version": "4.6.11",
4
4
  "description": "Config plugins and settings for RedHat Cloud Services project.",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/plugins.js CHANGED
@@ -54,12 +54,12 @@ module.exports = ({
54
54
  },
55
55
  ...(replacePlugin || []),
56
56
  ]),
57
- new DefinePlugin({
58
- // we have to wrap the appname string in another string because of how define plugin explodes strings
59
- CRC_APP_NAME: JSON.stringify(insights?.appname),
60
- ...(definePlugin || {}),
61
- }),
62
57
  ]),
58
+ new DefinePlugin({
59
+ // we have to wrap the appname string in another string because of how define plugin explodes strings
60
+ CRC_APP_NAME: JSON.stringify(insights?.appname),
61
+ ...(definePlugin || {}),
62
+ }),
63
63
  new ProvidePlugin({
64
64
  process: 'process/browser.js',
65
65
  Buffer: ['buffer', 'Buffer'],