Skip to content

Commit de8079b

Browse files
committed
chore(nx): Upgrade to Nx 18 - align apps
1 parent b9fd4d2 commit de8079b

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

apps/playground/federation.config.js

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
const { withNativeFederation, shareAll } = require('@angular-architects/native-federation/config');
1+
const {
2+
withNativeFederation,
3+
shareAll,
4+
} = require('@angular-architects/native-federation/config');
25

36
module.exports = withNativeFederation({
4-
57
shared: {
6-
...shareAll({ singleton: true, strictVersion: true, requiredVersion: 'auto' }),
8+
...shareAll({
9+
singleton: true,
10+
strictVersion: true,
11+
requiredVersion: 'auto',
12+
}),
713
},
814

915
skip: [
@@ -12,6 +18,5 @@ module.exports = withNativeFederation({
1218
'rxjs/testing',
1319
'rxjs/webSocket',
1420
// Add further packages you don't need at runtime
15-
]
16-
21+
],
1722
});

0 commit comments

Comments
 (0)