@backstage/cli 0.34.2 → 0.34.3
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/CHANGELOG.md
CHANGED
|
@@ -189,26 +189,26 @@ async function createConfig(paths, options) {
|
|
|
189
189
|
singleton: true,
|
|
190
190
|
requiredVersion: "*",
|
|
191
191
|
eager: !isRemote,
|
|
192
|
-
import: false
|
|
192
|
+
...isRemote && { import: false }
|
|
193
193
|
},
|
|
194
194
|
"react-dom": {
|
|
195
195
|
singleton: true,
|
|
196
196
|
requiredVersion: "*",
|
|
197
197
|
eager: !isRemote,
|
|
198
|
-
import: false
|
|
198
|
+
...isRemote && { import: false }
|
|
199
199
|
},
|
|
200
200
|
// React Router
|
|
201
201
|
"react-router": {
|
|
202
202
|
singleton: true,
|
|
203
203
|
requiredVersion: "*",
|
|
204
204
|
eager: !isRemote,
|
|
205
|
-
import: false
|
|
205
|
+
...isRemote && { import: false }
|
|
206
206
|
},
|
|
207
207
|
"react-router-dom": {
|
|
208
208
|
singleton: true,
|
|
209
209
|
requiredVersion: "*",
|
|
210
210
|
eager: !isRemote,
|
|
211
|
-
import: false
|
|
211
|
+
...isRemote && { import: false }
|
|
212
212
|
},
|
|
213
213
|
// MUI v4
|
|
214
214
|
// not setting import: false for MUI packages as this
|