Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/heavy-regions-shake.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
'@fluentui-react-native/persona-coin': patch
'@fluentui-react-native/menu-button': patch
'@fluentui-react-native/radio-group': patch
'@fluentui-react-native/react-configs': patch
'@fluentui-react-native/experimental-checkbox': patch
'@fluentui-react-native/dropdown': patch
'@fluentui-react-native/experimental-expander': patch
Expand All @@ -35,15 +34,13 @@
'@fluentui-react-native/focus-zone': patch
'@fluentui-react-native/pressable': patch
'@fluentui-react-native/separator': patch
'@fluentui-react-native/babel-config': patch
'@fluentui-react-native/popover': patch
'@fluentui-react-native/experimental-shimmer': patch
'@fluentui-react-native/spinner': patch
'@fluentui-react-native/tooltip': patch
'@fluentui-react-native/use-tokens': patch
'@fluentui-react-native/theme-tokens': patch
'@fluentui-react-native/checkbox': patch
'@fluentui-react-native/jest-config': patch
'@fluentui-react-native/experimental-avatar': patch
'@fluentui-react-native/drawer': patch
'@fluentui-react-native/experimental-shadow': patch
Expand All @@ -56,8 +53,6 @@
'@fluentui-react-native/divider': patch
'@fluentui-react-native/persona': patch
'@fluentui-react-native/tablist': patch
'@fluentui-react-native/kit-config': patch
'@fluentui-react-native/experimental-stack': patch
'@fluentui-react-native/use-slot': patch
'@fluentui-react-native/avatar': patch
'@fluentui-react-native/button': patch
Expand All @@ -77,7 +72,6 @@
'@fluentui-react-native/styling-utils': patch
'@fluentui-react-native/tokens': patch
'@fluentui-react-native/codemods': patch
'@fluentui-react-native/scripts': patch
---

chore: migrate to `oxfmt`
4 changes: 0 additions & 4 deletions .changeset/long-ideas-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
'@fluentui-react-native/use-tokens': patch
'@fluentui-react-native/theme-tokens': patch
'@fluentui-react-native/checkbox': patch
'@fluentui-react-native/jest-config': patch
'@fluentui-react-native/experimental-avatar': patch
'@fluentui-react-native/drawer': patch
'@fluentui-react-native/experimental-shadow': patch
Expand All @@ -54,8 +53,6 @@
'@fluentui-react-native/divider': patch
'@fluentui-react-native/persona': patch
'@fluentui-react-native/tablist': patch
'@fluentui-react-native/kit-config': patch
'@fluentui-react-native/experimental-stack': patch
'@fluentui-react-native/use-slot': patch
'@fluentui-react-native/avatar': patch
'@fluentui-react-native/button': patch
Expand All @@ -75,7 +72,6 @@
'@fluentui-react-native/styling-utils': patch
'@fluentui-react-native/tokens': patch
'@fluentui-react-native/codemods': patch
'@fluentui-react-native/scripts': patch
---

Ensure packages have a default export that references the typescript entrypoint and clean up build dependency ordering
4 changes: 2 additions & 2 deletions .github/scripts/changeset-version-with-postbump.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env zx
import 'zx/globals';
#!/usr/bin/env node
import { $, cd, echo, fs } from 'zx';

/**
* Changeset version bump with post-bump hook
Expand Down
5 changes: 2 additions & 3 deletions .github/scripts/validate-changesets.mts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ import { $, echo, fs } from 'zx';
* Private/ignored packages (per .changeset/config.json) are excluded automatically.
*/

const tmpDir = fs.mkdtempSync('/tmp/changeset-status-');
const STATUS_FILE = `${tmpDir}/status.json`;
const STATUS_FILE = 'changeset-status.json';

const log = {
error: (msg: string) => echo(styleText('red', msg)),
Expand Down Expand Up @@ -41,7 +40,7 @@ fs.writeJsonSync(STATUS_FILE, { releases: [], changesets: [] });
await $`yarn changeset status --since=origin/main --output ${STATUS_FILE}`.nothrow();

const data: ChangesetStatusOutput = fs.readJsonSync(STATUS_FILE);
fs.removeSync(tmpDir);
fs.removeSync(STATUS_FILE);

// Fail: major version bumps
const majorBumps = data.releases.filter((release) => release.type === 'major');
Expand Down
3 changes: 2 additions & 1 deletion .oxfmtrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"**/dist/**",
"**/CHANGELOG.*",
"**/CODE_OF_CONDUCT.md",
"**/SECURITY.md"
"**/SECURITY.md",
"packages/dependency-profiles/src/index.js"
]
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"bundle": "lage bundle",
"clean": "lage clean",
"change": "changeset",
"changeset:version": "zx .github/scripts/changeset-version-with-postbump.mts",
"changeset:validate": "zx .github/scripts/validate-changesets.mts",
"changeset:version": "node .github/scripts/changeset-version-with-postbump.mts",
"changeset:validate": "node .github/scripts/validate-changesets.mts",
"check-publishing": "node ./scripts/src/cli.mjs check-publishing",
"lint": "lage lint",
"lint-fix": "cross-env FURN_FIX_MODE=true lage lint",
Expand Down
2 changes: 1 addition & 1 deletion packages/configs/jest-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentui-react-native/jest-config",
"version": "0.1.1",
"version": "0.1.0",
"private": true,
"description": "Jest configuration for UI Fabric React Native",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/dependency-profiles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"main": "src/index.js",
"scripts": {
"build": "fluentui-scripts build",
"update-profile": "node update-profile.mjs"
"update-profile": "node update-profile.mts"
},
"devDependencies": {
"@fluentui-react-native/adapters": "*",
Expand Down
Loading
Loading