Skip to content

Commit 5378f58

Browse files
committed
add changeset and comments to constraints file
1 parent 541bab5 commit 5378f58

2 files changed

Lines changed: 80 additions & 0 deletions

File tree

.changeset/cozy-animals-deny.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
"@uifabricshared/foundation-composable": patch
3+
"@fluentui-react-native/experimental-appearance-additions": patch
4+
"@uifabricshared/theming-react-native": patch
5+
"@uifabricshared/foundation-settings": patch
6+
"@fluentui-react-native/experimental-activity-indicator": patch
7+
"@fluentui-react-native/experimental-native-font-metrics": patch
8+
"@uifabricshared/foundation-compose": patch
9+
"@fluentui-react-native/experimental-native-date-picker": patch
10+
"@uifabricshared/foundation-tokens": patch
11+
"@fluentui-react-native/themed-stylesheet": patch
12+
"@uifabricshared/themed-settings": patch
13+
"@fluentui-react-native/contextual-menu": patch
14+
"@uifabricshared/theme-registry": patch
15+
"@fluentui-react-native/vibrancy-view": patch
16+
"@fluentui-react-native/focus-trap-zone": patch
17+
"@fluentui-react-native/notification": patch
18+
"@uifabricshared/theming-ramp": patch
19+
"@fluentui-react-native/experimental-menu-button": patch
20+
"@fluentui-react-native/interactive-hooks": patch
21+
"@fluentui-react-native/persona-coin": patch
22+
"@fluentui-react-native/menu-button": patch
23+
"@fluentui-react-native/radio-group": patch
24+
"@fluentui-react-native/experimental-checkbox": patch
25+
"@fluentui-react-native/dropdown": patch
26+
"@fluentui-react-native/experimental-expander": patch
27+
"@fluentui-react-native/overflow": patch
28+
"@fluentui-react-native/composition": patch
29+
"@fluentui-react-native/use-styling": patch
30+
"@fluentui-react-native/android-theme": patch
31+
"@fluentui-react-native/default-theme": patch
32+
"@fluentui-react-native/theming-utils": patch
33+
"@fluentui-react-native/focus-zone": patch
34+
"@fluentui-react-native/pressable": patch
35+
"@fluentui-react-native/separator": patch
36+
"@fluentui-react-native/popover": patch
37+
"@fluentui-react-native/experimental-shimmer": patch
38+
"@fluentui-react-native/spinner": patch
39+
"@fluentui-react-native/tooltip": patch
40+
"@fluentui-react-native/use-tokens": patch
41+
"@fluentui-react-native/theme-tokens": patch
42+
"@fluentui-react-native/checkbox": patch
43+
"@fluentui-react-native/dependency-profiles": patch
44+
"@fluentui-react-native/experimental-avatar": patch
45+
"@fluentui-react-native/drawer": patch
46+
"@fluentui-react-native/experimental-shadow": patch
47+
"@fluentui-react-native/framework": patch
48+
"@fluentui-react-native/use-slots": patch
49+
"@fluentui-react-native/apple-theme": patch
50+
"@fluentui-react-native/theme-types": patch
51+
"@fluentui-react-native/win32-theme": patch
52+
"@fluentui-react-native/callout": patch
53+
"@fluentui-react-native/divider": patch
54+
"@fluentui-react-native/persona": patch
55+
"@fluentui-react-native/tablist": patch
56+
"@fluentui-react-native/use-slot": patch
57+
"@fluentui-react-native/avatar": patch
58+
"@fluentui-react-native/button": patch
59+
"@fluentui-react-native/switch": patch
60+
"@fluentui-react-native/badge": patch
61+
"@fluentui-react-native/input": patch
62+
"@fluentui-react-native/stack": patch
63+
"@fluentui-react-native/chip": patch
64+
"@fluentui-react-native/icon": patch
65+
"@fluentui-react-native/link": patch
66+
"@fluentui-react-native/menu": patch
67+
"@fluentui-react-native/text": patch
68+
"@fluentui-react-native/theme": patch
69+
"@fluentui-react-native/framework-base": patch
70+
"@fluentui/react-native": patch
71+
"@fluentui-react-native/adapters": patch
72+
"@fluentui-react-native/styling-utils": patch
73+
"@fluentui-react-native/tokens": patch
74+
"@fluentui-react-native/tester": patch
75+
"@fluentui-react-native/codemods": patch
76+
---
77+
78+
Remove the final configuration package (moving it to scripts) and switch to running various package validation tasks from the root

yarn.config.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ const { constrain } = require('./scripts/src/index.ts');
44
module.exports = defineConfig({
55
constraints: async ({ Yarn }) => {
66
for (const workspace of Yarn.workspaces()) {
7+
// skip the root workspace, as it should be be evaluated as a standard package
78
if (workspace.cwd !== '.') {
9+
// call through to the scripts constrain implementation that will do validation of each workspace one by one
810
constrain(workspace);
911
}
1012
}

0 commit comments

Comments
 (0)